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' ;
76import * as grpc from '@grpc/grpc-js' ;
7+ import { expect } from 'chai' ;
88import { after , before , describe , it } from 'mocha' ;
99import { BzlServerProcess } from '../../bzl/client' ;
1010import { BzlServerConfiguration , loadBzlProtos , loadLicenseProtos , setServerAddresses , setServerExecutable } from '../../bzl/configuration' ;
1111import { BzlFeatureName } from '../../bzl/feature' ;
12+ import { License } from '../../proto/build/stack/license/v1beta1/License' ;
1213import { ProtoGrpcType } from '../../proto/bzl' ;
1314import { ProtoGrpcType as LicenseProtoGrpcType } from '../../proto/license' ;
1415
1516import fs = require( 'graceful-fs' ) ;
1617import os = require( 'os' ) ;
1718import tmp = require( 'tmp' ) ;
1819import path = require( 'path' ) ;
19- import { License } from '../../proto/build/stack/license/v1beta1/License' ;
2020
2121const keepTmpDownloadDir = true ;
2222
@@ -25,7 +25,7 @@ export const licenseProtos: LicenseProtoGrpcType = makeLicenseProtos();
2525tmp . setGracefulCleanup ( ) ;
2626
2727describe ( BzlFeatureName , function ( ) {
28- this . timeout ( 60 * 1000 ) ;
28+ this . timeout ( 120 * 1000 ) ;
2929
3030 let downloadDir : string ;
3131 let server : BzlServerProcess ;
0 commit comments