diff options
| author | Henry Jameson <me@hjkos.com> | 2022-08-12 00:50:08 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-08-12 00:50:08 +0300 |
| commit | 0123872b56ccd2d534913706ae0f27ea8d6481de (patch) | |
| tree | 54b55d8a7edbace96f5ded60051a0c040358c69f /test/unit/specs/modules | |
| parent | 3a16a59f37b9b637bb4cbc1c3575810a65515cbc (diff) | |
fixes + fixes for anon users
Diffstat (limited to 'test/unit/specs/modules')
| -rw-r--r-- | test/unit/specs/modules/serverSideStorage.spec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/specs/modules/serverSideStorage.spec.js b/test/unit/specs/modules/serverSideStorage.spec.js index ada3b7ca..edb23e8a 100644 --- a/test/unit/specs/modules/serverSideStorage.spec.js +++ b/test/unit/specs/modules/serverSideStorage.spec.js @@ -116,7 +116,7 @@ describe('The serverSideStorage module', () => { expect(state.prefsStorage._journal.length).to.eql(1) expect(state.prefsStorage._journal[0]).to.eql({ path: 'simple.testing', - command: 'set', + operation: 'set', args: [1], // should have A timestamp, we don't really care what it is timestamp: state.prefsStorage._journal[0].timestamp @@ -132,7 +132,7 @@ describe('The serverSideStorage module', () => { expect(state.prefsStorage._journal.length).to.eql(1) expect(state.prefsStorage._journal[0]).to.eql({ path: 'simple.testing', - command: 'set', + operation: 'set', args: [2], // should have A timestamp, we don't really care what it is timestamp: state.prefsStorage._journal[0].timestamp |
