rats-search/e2e/basic.e2e.js
2018-02-04 05:07:38 +03:00

13 lines
306 B
JavaScript

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')
});
});