refactor(client): move to Vite by @phillipthelen

This commit is contained in:
Kalista Payne
2025-06-11 19:20:11 -05:00
parent 20d31ed8c8
commit ccc6c9867f
311 changed files with 5321 additions and 10626 deletions
@@ -1,3 +1,6 @@
import {
describe, expect, test, beforeEach, afterEach,
} from 'vitest';
import Vue from 'vue';
import MembersModalComponent from '@/components/groups/membersModal.vue';
@@ -15,12 +18,12 @@ describe.skip('Members Modal Component', () => {
vm.$destroy();
});
it('should have an empty object as sort-option at start', () => {
test('should have an empty object as sort-option at start', () => {
const defaultData = vm.data();
expect(defaultData.sortOption).to.eq({});
});
it('should accept sort-option object', () => {
test('should accept sort-option object', () => {
const sortOption = vm.data().sortOption[0];
vm.sort(sortOption);
Vue.nextTick(() => {