我有一个"通知.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.
在我的测试中,我想模拟权限和通知,以便我可以在notifications.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。
你必须模拟模块'expo'
jest.mock('expo', ()=>({
Permissions: {
askAsync: jest.fn()
}
}))