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'
const localVue = global.localVue
const propsData = {
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'
const localVue = global.localVue
const propsData = {
groupId: '',
groupMembers: []
groupId: '',
groupMembers: [],
}
describe('GroupMember', () => {