import { createWrapper, axios } from 'app/test/vitest/helper'; import CrudModel from 'components/CrudModel.vue'; import { vi, afterEach, beforeAll, describe, expect, it } from 'vitest'; describe.only('CrudModel', () => { let vm; beforeAll(() => { vm = createWrapper(CrudModel, { global: { stubs: [ 'vnPaginate', 'useState', 'arrayData', 'useStateStore', 'vue-i18n', ], mocks: { fetch: vi.fn(), validate: vi.fn(), }, }, propsData: { dataRequired: { id: 1, name: 'name', autoLoad: true, }, dataKey: 'crudModelKey', model: 'crudModel', url: 'crudModelUrl', }, attrs: { url: 'crudModelUrl', dataKey: 'CustomerList', order: 'id DESC', limit: 3, }, }).vm; }); afterEach(() => { vi.clearAllMocks(); }); describe('insert()', () => { it('should new element in list with index 0 if formData not has data', () => { vi.spyOn(axios, 'get').mockResolvedValue({ data: [ { id: 1, name: 'Tony Stark' }, { id: 2, name: 'Jessica Jones' }, { id: 3, name: 'Bruce Wayne' }, ], }); vm.state.set('crudModel', []); vm.insert(); expect(vm.formData.length).toEqual(1); expect(vm.formData[0].id).toEqual(1); expect(vm.formData[0].$index).toEqual(0); }); }); });