Skip to content

Commit

Permalink
enable debug logging for failing specs
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Apr 26, 2024
1 parent 1180e51 commit ee7baa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('Build Greenwood With: ', function() {
this.context = {
publicDir: path.join(outputPath, 'public')
};
runner = new Runner();
runner = new Runner(true);
});

describe(LABEL, function() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('Develop Greenwood With: ', function() {
this.context = {
hostname: `${hostname}:${port}`
};
runner = new Runner();
runner = new Runner(true);
});

describe(LABEL, function() {
Expand Down

0 comments on commit ee7baa9

Please sign in to comment.