rats-search/tests/init.js
2018-06-30 02:03:43 +03:00

14 lines
287 B
JavaScript

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