【发布时间】:2018-03-27 10:20:54
【问题描述】:
我有一个“notifications.js”模块,看起来有点像这样:
import { Notifications, Permissions } from 'expo'
export function setLocalNotification(storage = AsyncStorage) {
return storage
.getItem(NOTIFICATION_KEY)
.then(JSON.parse)
.then(data => {
if (data === null) {
return Permissions.askAsync(
Permissions.NOTIFICATIONS
).then(({ status }) => {
if (status === 'granted') {
Notifications.cancelAllScheduledNotificationsAsync()
...etc.
在我的测试中,我想模拟 Permissions 和 Notifications 以便我可以在 notification.spec.js 中做这样的事情:
import { setLocalNotification } from './notifications'
import mockAsyncStorage from '../mock/AsyncStorage'
it('correctly cancels pending notifications', done => {
setLocalNotification(mockAsyncStorage).then(done())
expect(Permissions.askAsync).toBeCalled()
expect(Notifications.cancelAllScheduledNotificationsAsync)
.toBeCalled()
})
我使用jest.mock 和jest.setMock 尝试了各种方法,但我似乎无法正常工作。如何以所需的方式模拟这些命名导入?例如,我试过这个:
jest.setMock('Permissions', () => ({
askAsync: jest
.fn()
.mockImplementationOnce(() => ({ status: 'granted' }))
}))
但这不起作用。它抛出
'module Permissions cannot be found from notifications.spec.js'
如果我尝试模拟整个 expo 模块,模拟函数 expect().toBeCalled() 返回 false。
【问题讨论】:
标签: react-native jestjs expo es6-modules