232201_test_to_master #62

Merged
alexm merged 50 commits from 232201_test_to_master into master 2023-06-01 07:26:39 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit a969fb44f8 - Show all commits

View File

@ -1,5 +1,5 @@
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
import { createWrapper } from 'app/test/vitest/helper';
import { createWrapper, axios } from 'app/test/vitest/helper';
import VnLog from 'src/components/common/VnLog.vue';
describe('VnLog', () => {
@ -10,7 +10,7 @@ describe('VnLog', () => {
model: "Claim",
},
}).vm;
vm.route = {params: {id: 1}}
vi.spyOn(axios, 'get').mockResolvedValue({ data: true });
});
afterEach(() => {