forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: make tests compatible with hapi 18
Also run test against Hapi 17 and Hapi 18. Closes hapi-swagger#557
- Loading branch information
1 parent
21d3c54
commit 218bf0e
Showing
6 changed files
with
436 additions
and
473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ test.tap | |
node_modules | ||
npm-debug.log | ||
.DS_Store | ||
.vscode | ||
.coveralls.yml | ||
.idea | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
// 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": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "test using lab identifier", | ||
"program": "${workspaceFolder}/node_modules/.bin/lab", | ||
"args": ["-i", "${input:inputLabTestIdentifier}"], | ||
"console": "integratedTerminal", | ||
"skipFiles": ["<node_internals>/**/*.js"] | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "inputLabTestIdentifier", | ||
"type": "promptString", | ||
"description": "Which test identifier do you want to run?" | ||
} | ||
] | ||
} |
Oops, something went wrong.