Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { shallowMount, mount } from '@vue/test-utils';
import { expect, describe, it, vi, beforeEach } from 'vitest';
import { installQuasar } from '@quasar/quasar-app-extension-testing-unit-vitest';
import Add from '@/views/investment/Add.vue';
/*
* Init and Install Quasar component as plugin test context
*/
installQuasar()
/*
* Mocking Vue Router ( useRouter() ) and this should in root.
* You can't put vi.mock() inside of describe() or test().
*/
const vueRouterMock = vi.fn();
vi.mock('vue-router', () => ({
useRouter: () => ({
push: vueRouterMock,
go: vueRouterMock,
}),
}));
/*
* Reset All mocking data for fresh context
*/
beforeEach(() => { vi.restoreAllMocks() })
describe('Test case investment/Add.Vue', () => {
it("Should Exists", ()=>{
expect(true).toBeTruthy();
})
}) |