2023-01-03 13:17:22 +00:00
|
|
|
import { installQuasar } from '@quasar/quasar-app-extension-testing-unit-vitest';
|
|
|
|
import { mount, flushPromises } from '@vue/test-utils';
|
|
|
|
import { createTestingPinia } from '@pinia/testing';
|
|
|
|
import { vi } from 'vitest';
|
|
|
|
import { i18n } from 'src/boot/i18n';
|
|
|
|
import { Notify, Dialog } from 'quasar';
|
|
|
|
import axios from 'axios';
|
|
|
|
|
|
|
|
installQuasar({
|
|
|
|
plugins: {
|
|
|
|
Notify,
|
|
|
|
Dialog,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const mockPush = vi.fn();
|
|
|
|
vi.mock('vue-router', () => ({
|
|
|
|
useRouter: () => ({
|
|
|
|
push: mockPush,
|
2023-02-22 13:55:29 +00:00
|
|
|
currentRoute: {
|
|
|
|
value: {
|
|
|
|
params: {
|
|
|
|
id: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-01-03 13:17:22 +00:00
|
|
|
}),
|
|
|
|
useRoute: () => ({
|
|
|
|
matched: [],
|
|
|
|
}),
|
|
|
|
}));
|
|
|
|
|
2023-02-22 13:55:29 +00:00
|
|
|
// class FormDataMock {
|
|
|
|
// append() {
|
|
|
|
// vi.fn();
|
|
|
|
// }
|
|
|
|
// delete() {
|
|
|
|
// vi.fn();
|
|
|
|
// }
|
|
|
|
// get() {
|
|
|
|
// vi.fn();
|
|
|
|
// }
|
|
|
|
// getAll() {
|
|
|
|
// vi.fn();
|
|
|
|
// }
|
|
|
|
// has() {
|
|
|
|
// vi.fn();
|
|
|
|
// }
|
|
|
|
// set() {
|
|
|
|
// vi.fn();
|
|
|
|
// }
|
|
|
|
// forEach() {
|
|
|
|
// vi.fn();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
2023-01-03 13:17:22 +00:00
|
|
|
export function createWrapper(component, options) {
|
|
|
|
const pinia = createTestingPinia({ createSpy: vi.fn, stubActions: false });
|
|
|
|
|
|
|
|
const defaultOptions = {
|
|
|
|
global: {
|
2023-02-22 13:55:29 +00:00
|
|
|
// FormData: FormDataMock,
|
2023-01-03 13:17:22 +00:00
|
|
|
plugins: [i18n, pinia],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const mountOptions = Object.assign({}, defaultOptions);
|
|
|
|
|
|
|
|
if (options instanceof Object) {
|
|
|
|
Object.assign(mountOptions, options);
|
|
|
|
|
|
|
|
if (options.global) {
|
|
|
|
mountOptions.global.plugins = defaultOptions.global.plugins;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const wrapper = mount(component, mountOptions);
|
|
|
|
const vm = wrapper.vm;
|
|
|
|
|
|
|
|
return { vm, wrapper };
|
|
|
|
}
|
|
|
|
|
|
|
|
export { axios, flushPromises };
|