Skip to content

Commit

Permalink
feat: Add endpoint for cached opportunity fetch and orphan checks (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickevansuk authored Aug 19, 2020
1 parent bc4176e commit 7f4d846
Show file tree
Hide file tree
Showing 8 changed files with 545 additions and 601 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.11.1
v12.18.2
14 changes: 5 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"name": "integration-tests",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}\\openactive-test-suite\\packages\\openactive-integration-tests",
"cwd": "${workspaceFolder}/packages/openactive-integration-tests",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "debug"],
"port": 9229
Expand All @@ -33,19 +33,15 @@
"name": "broker-microservice",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}\\openactive-test-suite\\packages\\openactive-broker-microservice",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "debug"],
"port": 9229
"program": "${workspaceFolder}/packages/openactive-broker-microservice/app.js",
"cwd": "${workspaceFolder}/packages/openactive-broker-microservice/"
},
{
"name": "combined",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}\\openactive-test-suite",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "debug"],
"port": 9229
"autoAttachChildProcesses": true,
"program": "${workspaceFolder}/start.js"
}
]
}
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: npm run certificate-validator
web: eval '$WEB_START_COMMAND'
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"test-interface-criteria": "cd packages/test-interface-criteria && npm test",
"test-tests": "cd packages/openactive-integration-tests && npm test",
"test": "npm run test-broker && npm run test-interface-criteria && npm run test-tests",
"debug-broker": "cd packages/openactive-broker-microservice && npm run debug",
"debug-tests": "cd packages/openactive-integration-tests && npm run debug",
"certificate-validator": "cd packages/openactive-integration-tests && npm run certificate-validator",
"doc-gen": "cd packages/openactive-integration-tests && npm run doc-gen"
},
Expand Down
Loading

0 comments on commit 7f4d846

Please sign in to comment.