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

Commit

Permalink
Other: Remove env.isEdge. Closes ckeditor/ckeditor5#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 e2026cc commit 366a63d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/view/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3661,13 +3661,6 @@ describe( 'Renderer', () => {
// However, for larger data sets the difference between using `diff()` and `fastDiff()` (see above issue for context)
// is more than 10x in execution time so it is clearly visible in these tests when something goes wrong.
describe( 'rendering performance', () => {
before( function() {
// Ignore on Edge browser where performance is quite poor.
if ( env.isEdge ) {
this.skip();
}
} );

it( 'should not take more than 350ms to render around 300 element nodes (same html)', () => {
const renderingTime = measureRenderingTime( viewRoot, generateViewData1( 65 ), generateViewData1( 55 ) );
expect( renderingTime ).to.be.within( 0, 350 );
Expand Down

0 comments on commit 366a63d

Please sign in to comment.