diff --git a/cypress/integration/1-store/setState.spec.ts b/cypress/integration/1-store/setState.spec.ts index b163fd8a..5c83ea89 100644 --- a/cypress/integration/1-store/setState.spec.ts +++ b/cypress/integration/1-store/setState.spec.ts @@ -15,6 +15,7 @@ describe('test store state', () => { Object.keys(store.state).forEach((state) => { const storedState = store[state] const initialVal = initial[state] + if (state === 'initialized') return expect(storedState).to.be.true expect(JSON.stringify(storedState)).to.eq(JSON.stringify(initialVal)) }) })