这是我的js文件的代码
import { Selector } from 'testcafe'
/* global fixture:true, test:true */
fixture`index`
.page`http://localhost:8080`
test('Index Page Loads', async t => {
await t
// Check for h1 tag
.expect(Selector('#root h1').innerText).eql('Hello')
})
运行lint时会引发异常
ReferenceError: fixture is not defined
at Object.fixture