10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
import {Selector} from 'testcafe';
|
|
import {mainTest} from "./test";
|
|
|
|
fixture`Play`
|
|
.page`https://127.0.0.1/pwa/wordRotator/publicTest/`;
|
|
|
|
test('Play', async t => {
|
|
|
|
await mainTest(t);
|
|
}); |