-
Notifications
You must be signed in to change notification settings - Fork 838
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mark Wolff
committed
Oct 9, 2019
1 parent
9b90fde
commit c14b33f
Showing
2 changed files
with
9 additions
and
3 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
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 |
---|---|---|
|
@@ -61,7 +61,7 @@ describe('[email protected]', () => { | |
const testPostgresLocally = process.env.TEST_POSTGRES_LOCAL; // For local: spins up local postgres db via docker | ||
const shouldTest = testPostgres || testPostgresLocally; // Skips these tests if false (default) | ||
|
||
before(function (ready) { | ||
before(function(ready) { | ||
if (!shouldTest) { | ||
// this.skip() workaround | ||
// https://github.com/mochajs/mocha/issues/2683#issuecomment-375629901 | ||
|
@@ -94,7 +94,7 @@ describe('[email protected]', () => { | |
}); | ||
}); | ||
|
||
beforeEach(function () { | ||
beforeEach(function() { | ||
plugin.enable(pg, tracer, logger); | ||
}); | ||
|
||
|