fix: location map box USA

This commit is contained in:
ogerly 2020-08-18 11:50:32 +02:00
parent 1b268b4891
commit 6a68bb8f83
2 changed files with 4 additions and 2 deletions

View File

@ -51,8 +51,8 @@ const newlyCreatedNodesWithLocales = [
country: {
id: expect.stringContaining('country'),
type: 'country',
name: 'United States',
nameEN: 'United States',
name: 'United States of America',
nameEN: 'United States of America',
nameDE: 'Vereinigte Staaten',
namePT: 'Estados Unidos',
nameES: 'Estados Unidos',

View File

@ -3,11 +3,13 @@ import Vuex from 'vuex'
import DeleteUserModal from './DeleteUserModal.vue'
const localVue = global.localVue
config.stubs['sweetalert-icon'] = '<span><slot /></span>'
config.stubs['nuxt-link'] = '<span><slot /></span>'
localVue.use(DeleteUserModal)
const getters = {
'auth/isAdmin': () => true,
'auth/isModerator': () => false
}
describe('DeleteUserModal.vue', () => {