Skip to content

Commit

Permalink
feat(backend): Migrate to vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekradko committed Nov 1, 2024
1 parent 734b9e8 commit 5665e6e
Show file tree
Hide file tree
Showing 57 changed files with 3,339 additions and 4,298 deletions.
2 changes: 2 additions & 0 deletions .changeset/modern-chicken-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,19 @@
"request": "launch",
"command": "npm start",
"cwd": "${workspaceFolder}/playground/express"
},
{
"name": "Debug Vitest",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/scripts/vitest-debug.mjs",
"args": ["${file}"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"autoAttachChildProcesses": true,
"smartStep": true,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
}
]
}
1 change: 0 additions & 1 deletion docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ The current monorepo setup is based on:
- [GitHub Actions](https://docs.github.com/en/actions), used for quality checks and automated release orchestration.
- [Yalc](https://github.com/wclr/yalc), used for to publish packages locally and test them in other local projects.
- [Jest](https://jestjs.io/), used for running unit tests.
- [QUnit](https://qunitjs.com/), used for tests inside `@clerk/backend`.
- [Playwright](https://playwright.dev/), used for running the [integration](../integration/) test suite.

All packages of the monorepo are inside [packages](../packages). For package specific details on installation, architecture and usage, you can refer to the package's README file.
Expand Down
Loading

0 comments on commit 5665e6e

Please sign in to comment.