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 0c5a2c6 commit 3d2e592
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 @@ -239,6 +239,7 @@ describe( 'Keyboard', () => {
describe( 'on Macintosh', () => {
beforeEach( () => {
env.isMac = true;
env.isiOS = false;
} );

it( 'replaces CTRL with ⌘', () => {
Expand Down Expand Up @@ -285,6 +286,7 @@ describe( 'Keyboard', () => {
describe( 'on iOS', () => {
beforeEach( () => {
env.isiOS = true;
env.isMac = false;
} );

it( 'replaces CTRL with ⌘', () => {
Expand Down

0 comments on commit 3d2e592

Please sign in to comment.