[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: `test:browser` failing on Windows (#456)

authored by

Joaquín Sánchez and committed by
GitHub
2cf1be9e fc7c76ce

+5 -2
+2 -1
package.json
··· 29 29 "test:browser:update": "playwright test --update-snapshots", 30 30 "test:nuxt": "vite test --project nuxt", 31 31 "test:types": "nuxt prepare && vue-tsc -b --noEmit && pnpm --filter npmx-connector test:types", 32 - "test:unit": "vite test --project unit" 32 + "test:unit": "vite test --project unit", 33 + "start:playwright:webserver": "NODE_ENV=test pnpm build && pnpm preview --port 5678" 33 34 }, 34 35 "dependencies": { 35 36 "@atproto/lex": "0.0.13",
+1 -1
playwright.config.ts
··· 13 13 reporter: 'html', 14 14 timeout: 120_000, 15 15 webServer: { 16 - command: 'NODE_ENV=test pnpm build && pnpm preview --port 5678', 16 + command: 'pnpm start:playwright:webserver', 17 17 url: baseURL, 18 18 reuseExistingServer: false, 19 19 timeout: 120_000,
+2
pnpm-workspace.yaml
··· 33 33 '@jsr/deno__doc@0.189.1': patches/@jsr__deno__doc@0.189.1.patch 34 34 35 35 savePrefix: '' 36 + 37 + shellEmulator: true