Skip to content

Commit f2c0f35

Browse files
committed
fixes package.json to run tests
1 parent 5600127 commit f2c0f35

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

package.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
{
2-
"name": "pnpm-template",
2+
"name": "banking-management",
33
"version": "1.0.0",
44
"description": "",
5-
"main": "index.ts",
65
"scripts": {
7-
"test": "vitest",
8-
"test-run-first": "vitest run simple.test.ts",
9-
"test-run-second": "vitest run real.test.ts"
6+
"test:watch": "vitest --watch",
7+
"test": "vitest run",
8+
"test-run-basic": "vitest run simple.test.ts",
9+
"test-run-real": "vitest run real.test.ts",
10+
"test-run-final": "curl -o bank-transactions.test.ts ${TESTS_FOLDER}/bank-transactions.test.ts && vitest run bank-transactions.test.ts && rm bank-transactions.test.ts"
1011
},
1112
"type": "module",
1213
"keywords": [],
1314
"author": "",
1415
"license": "ISC",
1516
"devDependencies": {
16-
"vite-tsconfig-paths": "^5.1.4",
17-
"vitest": "^2.1.8"
17+
"vite-tsconfig-paths": "^5.0.1",
18+
"vitest": "^2.1.0"
19+
},
20+
"dependencies": {
21+
"uuid": "^11.0.5"
1822
}
1923
}

0 commit comments

Comments
 (0)