Skip to content

Commit

Permalink
debug in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan-Arrowood committed Nov 30, 2024
1 parent 25ceca3 commit 53469ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"format": "prettier .",
"format:check": "npm run format -- --check",
"format:write": "npm run format -- --write",
"test": "node --test"
"test": "DEBUG=1 node --test"
},
"dependencies": {
"shell-quote": "^1.8.1"
Expand Down
2 changes: 1 addition & 1 deletion util/fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class Fixture {
this.nextMajor = nextMajor;
this.nodeMajor = nodeMajor;

this.debug = debug;
this.debug = debug || process.env.DEBUG === '1';

this.imageName = `hdb-next-integration-test-image-next-${nextMajor}-node-${nodeMajor}`;
this.containerName = `hdb-next-integration-test-container-next-${nextMajor}-node-${nodeMajor}`;
Expand Down

0 comments on commit 53469ca

Please sign in to comment.