refactor(tests): rename e2e tests
This commit is contained in:
12
tests/basic.test.js
Normal file
12
tests/basic.test.js
Normal 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')
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user