19 lines
487 B
TypeScript
19 lines
487 B
TypeScript
import { logout } from '@/scripts/logout'
|
|
import { post } from '@/scripts/net'
|
|
import { showModal } from '@/scripts/notify'
|
|
import urls from '@/scripts/urls'
|
|
|
|
jest.mock('@/scripts/net')
|
|
jest.mock('@/scripts/notify')
|
|
|
|
test('log out', async () => {
|
|
showModal.mockRejectedValueOnce(null).mockResolvedValueOnce({ value: '' })
|
|
post.mockResolvedValue({ message: '' })
|
|
|
|
await logout()
|
|
expect(post).not.toBeCalled()
|
|
|
|
await logout()
|
|
expect(post).toBeCalledWith(urls.auth.logout())
|
|
})
|