Skip to content

Commit

Permalink
Other: Remove env.isEdge. Closes #6202.
Browse files Browse the repository at this point in the history
Remove some special cases for Edge, as since it's Chromium-based now, it behaves closer to others.
  • Loading branch information
tomalec committed Apr 17, 2020
1 parent 05d087f commit 449cbcc
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
import List from '@ckeditor/ckeditor5-list/src/list';
import Image from '@ckeditor/ckeditor5-image/src/image';
import Table from '@ckeditor/ckeditor5-table/src/table';
import env from '@ckeditor/ckeditor5-utils/src/env';

import PasteFromOffice from '../../src/pastefromoffice';
import { generateTests } from '../_utils/utils';
Expand Down Expand Up @@ -43,10 +42,10 @@ describe( 'PasteFromOffice - integration', () => {
plugins: [ Clipboard, Paragraph, Image, Table, PasteFromOffice ]
},
skip: {
chrome: ( env.isEdge ? [ 'adjacentGroups' ] : [] ),
firefox: ( env.isEdge ? [ 'adjacentGroups' ] : [] ),
safari: ( env.isEdge ? [ 'adjacentGroups' ] : [] ),
edge: ( env.isEdge ? [] : [ 'adjacentGroups' ] )
chrome: [],
firefox: [],
safari: [],
edge: [ 'adjacentGroups' ]
}
} );

Expand Down

0 comments on commit 449cbcc

Please sign in to comment.