Renamed component
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2023-04-11 14:53:08 +02:00
parent 6676cb602b
commit dfac909f8d
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
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';
let vm;
@ -15,7 +15,7 @@ describe('Paginate', () => {
limit: 3,
},
};
vm = createWrapper(Paginate, options).vm;
vm = createWrapper(VnPaginate, options).vm;
});
afterEach(() => {