Files
AI/참고/playwright-main/examples/todomvc/tests/fixtures.ts
2026-05-12 19:40:31 +09:00

13 lines
297 B
TypeScript

/* eslint-disable notice/notice */
import { test as baseTest } from '@playwright/test';
export { expect } from '@playwright/test';
export const test = baseTest.extend({
page: async ({ page }, use) => {
await page.goto('https://demo.playwright.dev/todomvc');
await use(page);
},
});