launch.json 383 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 { "version": "0.2.0", "configurations": [ { "name": "Hardhat test", "type": "node", "request": "launch", "console": "integratedTerminal", "runtimeExecutable": "npm", "runtimeArgs": [ "test", "${workspaceFolder}/test/Voting.test.js" ] } ] }