diff --git a/packages/web-integration/src/playwright/index.ts b/packages/web-integration/src/playwright/index.ts index 3a825496..a4fdb6a5 100644 --- a/packages/web-integration/src/playwright/index.ts +++ b/packages/web-integration/src/playwright/index.ts @@ -39,16 +39,8 @@ export const PlaywrightAiFixture = () => { return { ai: async ({ page }: any, use: any, testInfo: TestInfo) => { - console.log('start', testInfo.title, { - file: testInfo.file, - line: testInfo.line, - }); const agent = agentForPage(page, testInfo.testId); await use(async (taskPrompt: string, opts?: { type?: 'action' | 'query' }) => { - console.log('use', testInfo.title, { - file: testInfo.file, - line: testInfo.line, - }); const { groupName, caseName } = groupAndCaseForTest(testInfo); const actionType = opts?.type || 'action'; const result = await agent.ai(taskPrompt, actionType, caseName, groupName); @@ -63,10 +55,6 @@ export const PlaywrightAiFixture = () => { }), }); } - console.log('end', testInfo.title, { - file: testInfo.file, - line: testInfo.line, - }); }, aiAction: async ({ page }: any, use: any, testInfo: TestInfo) => { const agent = agentForPage(page, testInfo.testId);