231801_dev_to_test #52

Merged
alexm merged 51 commits from 231801_dev_to_test into test 2023-05-08 10:31:13 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit dfac909f8d - Show all commits

View File

@ -1,8 +1,8 @@
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest'; import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
import { createWrapper, axios } from 'app/test/vitest/helper'; import { createWrapper, axios } from 'app/test/vitest/helper';
import Paginate from 'src/components/ui/VnPaginate.vue'; import VnPaginate from 'src/components/ui/VnPaginate.vue';
describe('Paginate', () => { describe('VnPaginate', () => {
const expectedUrl = '/api/customers'; const expectedUrl = '/api/customers';
let vm; let vm;
@ -15,7 +15,7 @@ describe('Paginate', () => {
limit: 3, limit: 3,
}, },
}; };
vm = createWrapper(Paginate, options).vm; vm = createWrapper(VnPaginate, options).vm;
}); });
afterEach(() => { afterEach(() => {