rats-search/tests/basic.test.js
2018-02-04 05:16:09 +03:00

13 lines
298 B
JavaScript

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