mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
16 lines
433 B
JSON
16 lines
433 B
JSON
{
|
|
"name": "@vitest/test-snapshots",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "pnpm run test:generate && pnpm run test:update && pnpm run test:snaps",
|
|
"test:generate": "node tools/generate-inline-test.mjs",
|
|
"test:snaps": "vitest run --dir test",
|
|
"test:update": "vitest run -u --dir test-update",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"vitest": "workspace:*"
|
|
}
|
|
}
|