refactor(tests): rename e2e tests

This commit is contained in:
Alexey Kasyanchuk
2018-02-03 13:59:26 +03:00
parent 936612c913
commit 6646381a49
3 changed files with 3 additions and 3 deletions

12
tests/basic.test.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')
});
});