У меня проблемы с написанием юнит-тестов с топором ios. Когда я высмеиваю топор ios, он возвращается неопределенным. Я использую vue -test-utils и jest (см. Код ниже). Я проверил документацию, но не могу понять.
import { shallowMount } from '@vue/test-utils';
import flushPromises from 'flush-promises';
import Vue from 'vue';
import Vuetify from 'vuetify';
import axios from 'axios';
import FrontendUser from '@/views/Users/FrontendUser';
import store from '@/store';
import "@/config/axios";
jest.mock('axios');
Vue.use(Vuetify);
describe("FrontendUser.vue", () => {
test("Data are download successfully", async () => {
const wrapper = shallowMount(FrontendUser, {
store,
mocks: {
$t: () => { },
}
});
const vm = wrapper.vm;
const response = [
{
id: 1,
email: "example@example.com",
username: "test",
isTenant: false,
getRole: "RegularUser"
},
{
id: 2,
email: "example@example.com",
username: "test",
isTenant: true,
getRole: "RegularUser"
}
]
axios.get.mockImplementation(() => Promise.resolve({ status: 200, data: response }))
await flushPromises();
expect(vm.frontendUsers.length).toBeGreaterThan(0);
})
});
Вот скриншот ошибки: введите описание изображения здесь