3836-axios_interceptor #19

Merged
joan merged 4 commits from 3836-axios_interceptor into dev 2022-08-08 10:23:53 +00:00
1 changed files with 2 additions and 16 deletions
Showing only changes of commit 582eb4d808 - Show all commits

View File

@ -52,15 +52,8 @@ describe('App', () => {
}
};
let error;
try {
await vm.responseError(response);
} catch (e) {
error = e;
}
await vm.responseError(response);
expect(error).toEqual(expect.objectContaining(response));
expect(vm.quasar.notify).toHaveBeenCalledWith(expect.objectContaining(
{
type: 'negative',
@ -80,15 +73,8 @@ describe('App', () => {
}
};
let error;
try {
await vm.responseError(response);
} catch (e) {
error = e;
}
await vm.responseError(response);
expect(error).toEqual(expect.objectContaining(response));
expect(vm.quasar.notify).toHaveBeenCalledWith(expect.objectContaining(
{
type: 'negative',