testcafe-workshop/tests/todo-0-setup.test.js
2018-10-23 11:41:26 +02:00

9 lines
210 B
JavaScript

import { Selector } from 'testcafe';
fixture("Testing setup")
.page("http://localhost:8080/");
test("Should have some content", async t => {
await t.expect(Selector("body").innerText).notEql("");
});