You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
364 B

import { assertNoConsoleErrors, cleanup, getPageUrl, pageUrl } from './helpers';
import { Home } from './pages';
fixture`Import`
.page(pageUrl)
.beforeEach(Home.clickImportButton)
.afterEach(assertNoConsoleErrors)
.afterEach(cleanup);
test('should be on the import network route', async t => {
await t.expect(getPageUrl()).match(/network_import/);
});