chore(tests): tests simplified

This commit is contained in:
Alexey Kasyanchuk
2018-01-31 20:34:50 +03:00
parent cb39438b26
commit d21e093ac7
3 changed files with 6 additions and 10 deletions

12
e2e/basic.e2e.js Normal file
View File

@ -0,0 +1,12 @@
import { expect } from "chai";
import testUtils from "./utils";
describe("application launch", () => {
beforeEach(testUtils.beforeEach);
afterEach(testUtils.afterEach);
it("index page loaded", async function() {
const { app } = this
await app.client.waitForExist('#index-window')
});
});