4998-claim_photos #38

Merged
joan merged 10 commits from 4998-claim_photos into dev 2023-02-27 10:03:42 +00:00
1 changed files with 30 additions and 0 deletions
Showing only changes of commit a303692454 - Show all commits

View File

@ -0,0 +1,30 @@
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
import { ref } from 'vue';
import { createWrapper, axios } from 'app/test/vitest/helper';
import ClaimPhoto from 'pages/Claim/Card/ClaimPhoto.vue';
describe('ClaimPhoto', () => {
let vm;
beforeAll(() => {
vm = createWrapper(ClaimPhoto).vm;
});
afterEach(() => {
//vi.clearAllMocks();
});
describe('viewDeleteDms()', () => {
it('should call quasar dialog', async () => {
console.log(vm.quasar);
vi.spyOn(axios, 'get').mockResolvedValue();
vi.spyOn(axios, 'post').mockResolvedValue();
vi.spyOn(vm.quasar, 'notify');
// await vm.viewDeleteDms();
// expect(vm.quasar.notify).toHaveBeenCalledWith(
// expect.objectContaining({ type: 'positive' })
// );
});
});
});