summaryrefslogtreecommitdiff
path: root/spec/frontend/static_site_editor/components/static_site_editor_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/static_site_editor/components/static_site_editor_spec.js')
-rw-r--r--spec/frontend/static_site_editor/components/static_site_editor_spec.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/frontend/static_site_editor/components/static_site_editor_spec.js b/spec/frontend/static_site_editor/components/static_site_editor_spec.js
index a40f8edbeb2..2c4fa0e061a 100644
--- a/spec/frontend/static_site_editor/components/static_site_editor_spec.js
+++ b/spec/frontend/static_site_editor/components/static_site_editor_spec.js
@@ -30,7 +30,6 @@ describe('StaticSiteEditor', () => {
store = new Vuex.Store({
state: createState(initialState),
getters: {
- isContentLoaded: () => false,
contentChanged: () => false,
...getters,
},
@@ -43,9 +42,11 @@ describe('StaticSiteEditor', () => {
};
const buildContentLoadedStore = ({ initialState, getters } = {}) => {
buildStore({
- initialState,
+ initialState: {
+ isContentLoaded: true,
+ ...initialState,
+ },
getters: {
- isContentLoaded: () => true,
...getters,
},
});
@@ -85,7 +86,7 @@ describe('StaticSiteEditor', () => {
const content = 'edit area content';
beforeEach(() => {
- buildStore({ initialState: { content }, getters: { isContentLoaded: () => true } });
+ buildContentLoadedStore({ initialState: { content } });
buildWrapper();
});