Merge pull request #2180 from thelounge/xpaw/ci

Try to fix sqlite test failing on CI randomly
This commit is contained in:
Pavel Djundik 2018-03-09 12:43:55 +02:00 committed by GitHub
commit 08f2ebd373
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,14 +29,18 @@ describe("SQLite Message Storage", function() {
});
});
it("should create database file", function() {
it("should create database file", function(done) {
expect(store.isEnabled).to.be.false;
expect(fs.existsSync(expectedPath)).to.be.false;
store.enable("testUser");
expect(store.isEnabled).to.be.true;
expect(fs.existsSync(expectedPath)).to.be.true;
store.database.serialize(() => {
expect(fs.existsSync(expectedPath)).to.be.true;
done();
});
});
it("should create tables", function(done) {