Skip to content

Commit 7c2325c

Browse files
Fix error
1 parent afc2003 commit 7c2325c

File tree

16 files changed

+638
-1660
lines changed

16 files changed

+638
-1660
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ node_modules
99
!.env.example
1010
vite.config.js.timestamp-*
1111
vite.config.ts.timestamp-*
12+
13+
# Playwright
14+
/test-results/
15+
/playwright-report/
16+
/blob-report/
17+
/playwright/.cache/

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
pnpm-lock.yaml
33
package-lock.json
44
yarn.lock
5+
6+
// gets reformatted by convex
7+
convex.json
58
src/convex/_generated/

convex.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"functions": "src/convex/"
2+
"functions": "src/convex/"
33
}

e2e/useQueryReturn.test.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { expect, test } from '@playwright/test';
2+
3+
test('always-errors page loads', async ({ page }) => {
4+
await page.goto('/tests/always-errors');
5+
await expect(page.locator('h1')).toBeVisible();
6+
await new Promise((r) => setTimeout(r, 1000));
7+
});

0 commit comments

Comments
 (0)