Fix webapp tests

This commit is contained in:
Wolfgang Huß 2023-05-31 12:10:00 +02:00
parent 4b4c3c91ff
commit a454ce51de
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ describe('FilterMenu.vue', () => {
const getters = {
'posts/isActive': () => false,
'posts/filteredPostTypes': () => [],
'posts/orderBy': () => 'createdAt_desc',
}

View File

@ -11,6 +11,7 @@ describe('OrderByFilter', () => {
'posts/TOGGLE_ORDER': jest.fn(),
}
const getters = {
'posts/filteredPostTypes': () => [],
'posts/orderBy': () => 'createdAt_desc',
}