Skip to content

Commit ad7034c

Browse files
authored
test: make tests idempotent (#201)
1 parent c5ba004 commit ad7034c

File tree

1 file changed

+2
-2
lines changed
  • packages/google-devtools-containeranalysis/system-test

1 file changed

+2
-2
lines changed

packages/google-devtools-containeranalysis/system-test/install.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {readFileSync} from 'fs';
2121
import {describe, it} from 'mocha';
2222

2323
describe('typescript consumer tests', () => {
24-
it('should have correct type signature for typescript users', async function () {
24+
it('should have correct type signature for typescript users', async function() {
2525
this.timeout(300000);
2626
const options = {
2727
packageDir: process.cwd(), // path to your module.
@@ -35,7 +35,7 @@ describe('typescript consumer tests', () => {
3535
await packNTest(options); // will throw upon error.
3636
});
3737

38-
it('should have correct type signature for javascript users', async function () {
38+
it('should have correct type signature for javascript users', async function() {
3939
this.timeout(300000);
4040
const options = {
4141
packageDir: process.cwd(), // path to your module.

0 commit comments

Comments
 (0)