Skip to content

Commit cf49c32

Browse files
committed
fix: 'orignalGetSelection' → 'originalGetSelection' in test
1 parent 8b05c74 commit cf49c32

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

applications/mail/src/app/components/composer/tests/Composer.hotkeys.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ import {
2020
} from '../../../helpers/test/helper';
2121
import { AddressID, ID, fromAddress, renderComposer, toAddress } from './Composer.test.helpers';
2222

23-
const orignalGetSelection = global.getSelection;
23+
const originalGetSelection = global.getSelection;
2424

2525
beforeAll(() => {
2626
global.getSelection = jest.fn();
2727
});
2828

2929
afterAll(() => {
30-
global.getSelection = orignalGetSelection;
30+
global.getSelection = originalGetSelection;
3131
});
3232

3333
describe('Composer hotkeys', () => {

0 commit comments

Comments
 (0)