This commit is contained in:
ogerly 2022-10-20 16:01:16 +02:00
parent af5447e830
commit de33b2288d
2 changed files with 4 additions and 6 deletions

View File

@ -1,9 +1,8 @@
import { config, mount } from '@vue/test-utils' import { mount } from '@vue/test-utils'
import GroupList from './GroupList.vue' import GroupList from './GroupList.vue'
const localVue = global.localVue const localVue = global.localVue
const propsData = { const propsData = {
groups: [], groups: [],
} }

View File

@ -1,12 +1,11 @@
import { config, mount } from '@vue/test-utils' import { mount } from '@vue/test-utils'
import GroupMember from './GroupMember.vue' import GroupMember from './GroupMember.vue'
const localVue = global.localVue const localVue = global.localVue
const propsData = { const propsData = {
groupId: '', groupId: '',
groupMembers: [] groupMembers: [],
} }
describe('GroupMember', () => { describe('GroupMember', () => {