mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
Merge branch '3447-modify-humhub-card-in-overview-page' of github.com:gradido/gradido into 3447-modify-humhub-card-in-overview-page
This commit is contained in:
commit
c94a201343
@ -11,6 +11,23 @@ vi.mock('@/components/Overview/CommunityNews', () => ({
|
||||
},
|
||||
}))
|
||||
|
||||
vi.mock('@vue/apollo-composable', () => ({
|
||||
useQuery: vi.fn().mockReturnValue({
|
||||
onResult: vi.fn(),
|
||||
onError: vi.fn(),
|
||||
loading: { value: false },
|
||||
error: { value: null },
|
||||
refetch: vi.fn(),
|
||||
}),
|
||||
}))
|
||||
|
||||
vi.mock('@/components/Overview/CardCircles', () => ({
|
||||
default: {
|
||||
name: 'CardCircles',
|
||||
template: '<div class="card-circles"></div>',
|
||||
},
|
||||
}))
|
||||
|
||||
describe('Overview', () => {
|
||||
let wrapper
|
||||
let router
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user