Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"recommendations": [
"typescriptteam.native-preview",
"dbaeumer.vscode-eslint",
"oxc.oxc-vscode"
"oxc.oxc-vscode",
"vitest.explorer",
"ms-playwright.playwright"
]
}
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Single-package repository providing **utilities for writing tests with Playwrigh

## Tests

- Unit tests: Vitest, located in `src/__tests__/**/*.test.ts` (`pnpm turbo test:unit`)
- Unit tests: Vitest, located in `src/**/*.test.ts` (`pnpm turbo test:unit`)
- Integration tests: Playwright, located in `tests/**/*.spec.ts` (`pnpm turbo test:integration`)

## Conventions
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig, devices } from "@playwright/test";

const isCI = process.env.CI === "true";
import { isCI } from "./src/environment";

export default defineConfig({
testDir: "tests",
Expand Down
1 change: 0 additions & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ overrides:

allowBuilds:
esbuild: false
node: true
node@runtime:24.20.0: true
Loading