We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707f054 commit f3307e5Copy full SHA for f3307e5
Readme.md
@@ -19,3 +19,9 @@ npm run dev # Run dev
19
open http://localhost:3000 # Check if be is working
20
open http://localhost:5173 # Check if fe is working
21
```
22
+
23
+Tests:
24
+```
25
+npm run test
26
+npm run test -- --watch
27
server/index.test.ts
@@ -0,0 +1,7 @@
1
+import { describe, test, expect } from '@jest/globals'
2
3
+describe('index', () => {
4
+ test('should be defined', () => {
5
+ expect('abc').toBeDefined()
6
+ })
7
+})
0 commit comments