9 lines
210 B
JavaScript
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("");
|
|
});
|