From ad7034ca6c4bd910267f4bf7efc37d457722d2fd Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Thu, 23 Apr 2020 15:15:49 -0700 Subject: [PATCH] test: make tests idempotent (#201) --- .../google-devtools-containeranalysis/system-test/install.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/google-devtools-containeranalysis/system-test/install.ts b/packages/google-devtools-containeranalysis/system-test/install.ts index 4c1ba3eb79a..c4d80e9c0c8 100644 --- a/packages/google-devtools-containeranalysis/system-test/install.ts +++ b/packages/google-devtools-containeranalysis/system-test/install.ts @@ -21,7 +21,7 @@ import {readFileSync} from 'fs'; import {describe, it} from 'mocha'; describe('typescript consumer tests', () => { - it('should have correct type signature for typescript users', async function () { + it('should have correct type signature for typescript users', async function() { this.timeout(300000); const options = { packageDir: process.cwd(), // path to your module. @@ -35,7 +35,7 @@ describe('typescript consumer tests', () => { await packNTest(options); // will throw upon error. }); - it('should have correct type signature for javascript users', async function () { + it('should have correct type signature for javascript users', async function() { this.timeout(300000); const options = { packageDir: process.cwd(), // path to your module.