Skip to content

Commit 0512f21

Browse files
committed
Increase test timeout
1 parent 5e91741 commit 0512f21

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/integration/feature.bzl.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
// Adapted from
44
// https://github.com/microsoft/vscode-languageserver-node/blob/master/client-node-tests/src/integration.test.ts
55

6-
import { expect } from 'chai';
76
import * as grpc from '@grpc/grpc-js';
7+
import { expect } from 'chai';
88
import { after, before, describe, it } from 'mocha';
99
import { BzlServerProcess } from '../../bzl/client';
1010
import { BzlServerConfiguration, loadBzlProtos, loadLicenseProtos, setServerAddresses, setServerExecutable } from '../../bzl/configuration';
1111
import { BzlFeatureName } from '../../bzl/feature';
12+
import { License } from '../../proto/build/stack/license/v1beta1/License';
1213
import { ProtoGrpcType } from '../../proto/bzl';
1314
import { ProtoGrpcType as LicenseProtoGrpcType } from '../../proto/license';
1415

1516
import fs = require('graceful-fs');
1617
import os = require('os');
1718
import tmp = require('tmp');
1819
import path = require('path');
19-
import { License } from '../../proto/build/stack/license/v1beta1/License';
2020

2121
const keepTmpDownloadDir = true;
2222

@@ -25,7 +25,7 @@ export const licenseProtos: LicenseProtoGrpcType = makeLicenseProtos();
2525
tmp.setGracefulCleanup();
2626

2727
describe(BzlFeatureName, function () {
28-
this.timeout(60 * 1000);
28+
this.timeout(120 * 1000);
2929

3030
let downloadDir: string;
3131
let server: BzlServerProcess;

0 commit comments

Comments
 (0)