fix(tests): simplify tests

This commit is contained in:
Alexey Kasyanchuk
2018-06-30 01:54:38 +03:00
parent 72828b860f
commit 8dc7cfecf9
8 changed files with 28 additions and 72 deletions

13
tests/init.js Normal file
View File

@ -0,0 +1,13 @@
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
});