rats-search/tests/basic.test.js
2018-02-04 05:14:52 +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')
});
});