Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Simplified the test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Piechaczek committed Feb 7, 2018
1 parent bb89d34 commit d43ba56
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/tickets/1281.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
import List from '@ckeditor/ckeditor5-list/src/list';
import Position from '../../src/model/position';

import { setData as setModelData, getData as getModelData } from '../../src/dev-utils/model';
Expand All @@ -22,7 +19,7 @@ describe.only( 'Bug ckeditor5-engine#1281', () => {
document.body.appendChild( element );

return ClassicTestEditor
.create( element, { plugins: [ Bold, Italic, Paragraph, List ] } )
.create( element, { plugins: [ Paragraph ] } )
.then( newEditor => {
editor = newEditor;
model = editor.model;
Expand Down

0 comments on commit d43ba56

Please sign in to comment.