Code coverage test run: Fix broken test
This test failed only under code coverage runs - because start up of the page too took long! FREEBIE
This commit is contained in:
parent
5c990d2a35
commit
c10e1b4ad0
1 changed files with 2 additions and 1 deletions
|
@ -189,8 +189,9 @@ describe("SignalProtocolStore", function() {
|
||||||
record.save({ firstUse: false }).then(function() { done(); });
|
record.save({ firstUse: false }).then(function() { done(); });
|
||||||
});
|
});
|
||||||
describe('If nonblocking approval is required', function() {
|
describe('If nonblocking approval is required', function() {
|
||||||
var now = Date.now();
|
var now;
|
||||||
before(function(done) {
|
before(function(done) {
|
||||||
|
now = Date.now();
|
||||||
record.save({ timestamp: now }).then(function() { done(); });
|
record.save({ timestamp: now }).then(function() { done(); });
|
||||||
});
|
});
|
||||||
it('sets non-blocking approval', function(done) {
|
it('sets non-blocking approval', function(done) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue