Add testing script and vitest as a dev dependency in package.json

This commit is contained in:
2025-12-23 16:42:07 +01:00
parent a14206d32c
commit c04c144b33
10 changed files with 1910 additions and 188 deletions

13
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "test",
"group": "test",
"problemMatcher": [],
"label": "npm: test",
"detail": "jest"
}
]
}