Skip to content

Commit

Permalink
Remove async checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mati365 committed Jan 13, 2025
1 parent 2ebd5ab commit 4c54a68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ckeditor5-utils/tests/collectstylesheets.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import collectStylesheets from '../src/collectstylesheets.js';
describe( 'collectStylesheets', () => {
let dataCkeStylesheet, stylesheet;

beforeEach( async () => {
beforeEach( () => {
dataCkeStylesheet = document.createElement( 'style' );
dataCkeStylesheet.setAttribute( 'data-cke', true );
dataCkeStylesheet.id = 'data-cke-stylesheet';
Expand All @@ -36,7 +36,7 @@ describe( 'collectStylesheets', () => {
} );
} );

afterEach( async () => {
afterEach( () => {
sinon.restore();

dataCkeStylesheet.remove();
Expand Down

0 comments on commit 4c54a68

Please sign in to comment.