Skip to content

Commit

Permalink
vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
apocas committed Jan 3, 2025
1 parent 92df7b1 commit 277185b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ npm-debug.log
*~
*.log
.idea
.vscode
25 changes: 25 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// 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": [
{
"args": [
"--colors",
"${workspaceFolder}/test",
"-R",
"spec",
"--exit"
],
"internalConsoleOptions": "openOnSessionStart",
"name": "Mocha Tests",
"program": "./node_modules/mocha/bin/mocha.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
}
]
}
2 changes: 1 addition & 1 deletion lib/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ Docker.prototype.buildImage = function(file, opts, callback) {
});
});
} else {
dial(null, callback);
dial(callback);
}
}

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 277185b

Please sign in to comment.