rats-search/tests/init.js
Alexey Kasyanchuk 297baac3d3 fix(db): under mac and linux using alternative pool mechanism
this must fix test brokeup and closing stub
2018-08-07 20:56:16 +03:00

15 lines
337 B
JavaScript

import {startApplication, stopApplication} from "../tests/application";
global.logT = (...args) => {console.log(...args)}
describe("application", () => {
before(startApplication);
after(stopApplication);
it("check start", async function() {
const { app } = this
await app.client.waitForExist('#index-window')
});
//TESTS
});