Ensure sqlite tests are serialized
This commit is contained in:
parent
1ddc617b79
commit
a222dc9237
@ -73,16 +73,18 @@ describe("SQLite Message Storage", function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("should store a message", function(done) {
|
it("should store a message", function(done) {
|
||||||
|
store.database.serialize(() => {
|
||||||
store.index("this-is-a-network-guid", "#ThisIsAChannel", new Msg({
|
store.index("this-is-a-network-guid", "#ThisIsAChannel", new Msg({
|
||||||
time: 123456789,
|
time: 123456789,
|
||||||
text: "Hello from sqlite world!",
|
text: "Hello from sqlite world!",
|
||||||
}));
|
}));
|
||||||
|
|
||||||
store.database.serialize(done);
|
done();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should retrieve previously stored message", function(done) {
|
it("should retrieve previously stored message", function(done) {
|
||||||
store.getMessages({
|
store.database.serialize(() => store.getMessages({
|
||||||
uuid: "this-is-a-network-guid",
|
uuid: "this-is-a-network-guid",
|
||||||
}, {
|
}, {
|
||||||
name: "#thisisaCHANNEL",
|
name: "#thisisaCHANNEL",
|
||||||
@ -96,7 +98,7 @@ describe("SQLite Message Storage", function() {
|
|||||||
expect(msg.time.getTime()).to.equal(123456789);
|
expect(msg.time.getTime()).to.equal(123456789);
|
||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
}));
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should close database", function(done) {
|
it("should close database", function(done) {
|
||||||
|
Loading…
Reference in New Issue
Block a user