Skip to content

Commit

Permalink
update fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
ling1726 committed Jul 14, 2021
1 parent 4daf855 commit 2b4f0fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Enter, Tab, ArrowDown, ArrowLeft, ArrowRight } from '@fluentui/keyboard-keys/lib/keyCodes';
import { keyCodes } from '@fluentui/keyboard-keys';

console.log(Enter, Tab, ArrowDown, ArrowLeft, ArrowRight);
console.log(keyCodes.Enter, keyCodes.Tab, keyCodes.ArrowDown, keyCodes.ArrowLeft, keyCodes.ArrowRight);

export default {
name: 'Multiple keyCodes',
Expand Down
4 changes: 2 additions & 2 deletions packages/keyboard-keys/bundle-size/MultipleKeys.fixture.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { keyCodes } from '@fluentui/keyboard-keys';
import { Enter, Tab, ArrowDown, ArrowLeft, ArrowRight } from '@fluentui/keyboard-keys';

console.log(keyCodes.Enter, keyCodes.Tab, keyCodes.ArrowDown, keyCodes.ArrowLeft, keyCodes.ArrowRight);
console.log(Enter, Tab, ArrowDown, ArrowLeft, ArrowRight);

export default {
name: 'Multiple keys',
Expand Down

0 comments on commit 2b4f0fb

Please sign in to comment.