5 lines
127 B
TypeScript
5 lines
127 B
TypeScript
import { test, expect } from './fixtures.js';
|
|
|
|
test('myTest', async ({ page }) => {
|
|
await expect(page).toHaveURL('/');
|
|
});
|