Fix various issues in the current Milestone #5

Open
Simon wants to merge 7 commits from refacto into main
2 changed files with 21 additions and 1 deletions
Showing only changes of commit 490c196f49 - Show all commits

19
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Test Cypress via NPM",
"cwd": "${workspaceFolder}",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"test"
]
}
]
}

View File

@ -3,7 +3,8 @@
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "nodemon index.js"
"start": "nodemon index.js",
"test": "cypress open"
},
"devDependencies": {
"cypress": "^8.3.0",