-
-
Notifications
You must be signed in to change notification settings - Fork 8
Enhance Report Styling and Intelligence Content #659
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| import { test, expect } from '@playwright/test'; | ||
|
|
||
| test('verify report template rendering', async ({ page }) => { | ||
|
Comment on lines
+1
to
+3
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Test will not be discovered by Playwright in current location.
🤖 Prompt for AI Agents |
||
| // Mocking AI state/messages for report generation | ||
| await page.goto('/'); | ||
|
|
||
| // We need to simulate a chat to have messages to export | ||
| await page.fill('[data-testid="chat-input"]', 'Analyze the Eiffel Tower'); | ||
| await page.click('[data-testid="chat-submit"]'); | ||
|
|
||
| // Wait for some response to appear | ||
| await page.waitForSelector('[data-testid="bot-message"]', { timeout: 30000 }); | ||
|
|
||
| // Now try to trigger the download button which should be in the header or settings | ||
| // The DownloadReportButton is used in the SettingsView or Header? | ||
| // Let's check where it is used. | ||
| }); | ||
Uh oh!
There was an error while loading. Please reload this page.