Merge to master #21

Merged
joan merged 163 commits from test into master 2022-10-20 11:59:30 +00:00
1 changed files with 10 additions and 10 deletions
Showing only changes of commit 165075aaef - Show all commits

View File

@ -17,6 +17,10 @@ describe('Login', () => {
vm = createWrapper(Login).vm;
});
afterEach(() => {
jest.clearAllMocks();
});
it('should successfully set the token into session', async () => {
const expectedUser = {
id: 999,
@ -42,16 +46,12 @@ describe('Login', () => {
vm.session.destroy();
});
// it('should not set the token into session if any error occurred', async () => {
// jest.spyOn(axios, 'post').mockRejectedValue(new Error('error'));
// jest.spyOn(vm.quasar, 'notify')
it('should not set the token into session if any error occurred', async () => {
jest.spyOn(axios, 'post').mockReturnValue({ data: null });
jest.spyOn(vm.quasar, 'notify');
// expect(vm.session.getToken()).toEqual('');
await vm.onSubmit();
// await vm.onSubmit();
// expect(vm.quasar.notify).toHaveBeenCalledWith(expect.objectContaining(
// { 'type': 'negative' }
// ));
// });
expect(vm.quasar.notify).not.toHaveBeenCalled();
});
});