Skip to content

Commit

Permalink
Test (utils): fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-stv committed Aug 17, 2023
1 parent 4d20dbf commit 0c5a2c6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/ckeditor5-utils/tests/keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ describe( 'Keyboard', () => {
describe( 'on Macintosh', () => {
beforeEach( () => {
env.isMac = true;
env.isiOS = false;
} );

it( 'parses string', () => {
Expand Down Expand Up @@ -139,6 +140,7 @@ describe( 'Keyboard', () => {
describe( 'on iOS', () => {
beforeEach( () => {
env.isiOS = true;
env.isMac = false;
} );

it( 'parses string', () => {
Expand Down

0 comments on commit 0c5a2c6

Please sign in to comment.