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(""); });