cartodb-4.42/lib/assets/test/spec/new-dashboard/unit/specs/pages/mocks.js
2024-04-06 05:25:13 +00:00

17 lines
299 B
JavaScript

export const fakeStore = {
dispatch: jest.fn(),
state: {
user: {
base_url: 'fake_base_url',
id: 'fake_id',
apiKey: 'fake_api_key'
},
notifications: {
notifications: ['fake_notifications']
}
},
getters: {
'user/isNotificationVisible': false
}
};