Files
react-native/Libraries/Components/Keyboard/__tests__/Keyboard-test.js
T
Micha Reiser 93377ff508 Remove "use strict" directive from ES Modules
Summary:
ES Modules implicitly enable strict mode. Adding the "use strict" directive is, therefore, not required.

This diff removes all "use strict" directives from ES modules.

Changelog:

[Internal]

Reviewed By: motiz88

Differential Revision: D26172715

fbshipit-source-id: 57957bcbb672c4c3e62b1db633cf425c1c9d6430
2021-02-02 11:12:56 -08:00

94 lines
3.0 KiB
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow strict-local
* @emails oncall+react_native
*/
const NativeModules = require('../../../BatchedBridge/NativeModules');
const LayoutAnimation = require('../../../LayoutAnimation/LayoutAnimation');
const dismissKeyboard = require('../../../Utilities/dismissKeyboard');
const Keyboard = require('../Keyboard');
import NativeEventEmitter from '../../../EventEmitter/NativeEventEmitter';
jest.mock('../../../LayoutAnimation/LayoutAnimation');
jest.mock('../../../Utilities/dismissKeyboard');
describe('Keyboard', () => {
beforeEach(() => {
jest.resetAllMocks();
});
it('exposes KeyboardEventEmitter methods', () => {
const KeyboardObserver = NativeModules.KeyboardObserver;
const KeyboardEventEmitter = new NativeEventEmitter(KeyboardObserver);
// $FlowFixMe
expect(Keyboard._subscriber).toBe(KeyboardEventEmitter._subscriber);
// $FlowFixMe Cannot access private property
expect(Keyboard._nativeModule).toBe(KeyboardEventEmitter._nativeModule);
});
it('uses dismissKeyboard utility', () => {
Keyboard.dismiss();
expect(dismissKeyboard).toHaveBeenCalled();
});
describe('scheduling layout animation', () => {
const scheduleLayoutAnimation = (duration, easing): void =>
// $FlowFixMe[incompatible-call]
Keyboard.scheduleLayoutAnimation({duration, easing});
it('triggers layout animation', () => {
scheduleLayoutAnimation(12, 'spring');
expect(LayoutAnimation.configureNext).toHaveBeenCalledWith({
duration: 12,
update: {
duration: 12,
type: 'spring',
},
});
});
it('does not trigger animation when duration is null', () => {
scheduleLayoutAnimation(null, 'spring');
expect(LayoutAnimation.configureNext).not.toHaveBeenCalled();
});
it('does not trigger animation when duration is 0', () => {
scheduleLayoutAnimation(0, 'spring');
expect(LayoutAnimation.configureNext).not.toHaveBeenCalled();
});
describe('animation update type', () => {
const assertAnimationUpdateType = type =>
expect(LayoutAnimation.configureNext).toHaveBeenCalledWith(
expect.objectContaining({
duration: expect.anything(),
update: {duration: expect.anything(), type},
}),
);
it('retrieves type from LayoutAnimation', () => {
scheduleLayoutAnimation(12, 'linear');
assertAnimationUpdateType('linear');
});
it("defaults to 'keyboard' when key in LayoutAnimation is not found", () => {
scheduleLayoutAnimation(12, 'some-unknown-animation-type');
assertAnimationUpdateType('keyboard');
});
it("defaults to 'keyboard' when easing is null", () => {
scheduleLayoutAnimation(12, null);
assertAnimationUpdateType('keyboard');
});
});
});
});