Skip to content

Commit f3587da

Browse files
committed
Fix linting issues
1 parent dc9e588 commit f3587da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/queue/drivers/GCPSClient.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ describe("GCPSClient", () => {
1010

1111
before(function() {
1212
// If the test suite is not running in CI then skip this suite - it's slow and requires credentials
13-
if (process.env.CI !== "true" || isNaN(Number(process.env.TRAVIS_PULL_REQUEST)) ) {
13+
if (
14+
process.env.CI !== "true" ||
15+
isNaN(Number(process.env.TRAVIS_PULL_REQUEST))
16+
) {
1417
this.skip()
1518
}
1619
})

0 commit comments

Comments
 (0)