Skip to content

Commit

Permalink
fix(tests)
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Jan 2, 2024
1 parent ff26932 commit 7e4f8c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3206,7 +3206,7 @@ describe('Floccus', function() {
})
await new Promise(resolve => setTimeout(resolve, 60000))
expect(account2.getData().error).to.be.not.ok
expect(account2.getData().scheduled).to.be.true
expect(account2.getData().scheduled).to.be.ok
expect(resolved).to.equal(true)
})
console.log('Finished sync with account 1')
Expand All @@ -3217,7 +3217,7 @@ describe('Floccus', function() {
})
await new Promise(resolve => setTimeout(resolve, 60000))
expect(account2.getData().error).to.be.not.ok
expect(account2.getData().scheduled).to.be.false
expect(account2.getData().scheduled).to.be.not.ok
expect(resolved).to.equal(true)
})
it('should propagate edits using "last write wins"', async function() {
Expand Down

0 comments on commit 7e4f8c9

Please sign in to comment.