Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorioMonari committed Feb 14, 2023
1 parent e95d16b commit 7d741de
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Start AwTester",
"request": "launch",
"runtimeArgs": [
"test"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"cwd":"${workspaceFolder}\\2_PAC"
},

{
"name": "Start AwProducer",
"request": "launch",
"runtimeArgs": [
"start"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"cwd":"${workspaceFolder}\\1_ActivityWatchProducer"
},

{
"type": "node",
"request": "launch",
"name": "Launch PacFactory module",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\2_PAC\\runPacApp.js",
"args":["TestMaster"],
"cwd": "${workspaceFolder}\\2_PAC"
}
]
}
5 changes: 5 additions & 0 deletions 2_PAC/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{

"scripts": {
"test": "node runPacApp TestMaster"
},

"dependencies": {
"@arces-wot/sepa-js": "^0.12.1",
"body-parser": "^1.20.1",
Expand Down

0 comments on commit 7d741de

Please sign in to comment.