rats-search/tests/init.js
2018-06-30 01:54:38 +03:00

14 lines
296 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
});