Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 9da5d65

Browse files
committed
fix broken Kokoro configuration test
1 parent c397ef1 commit 9da5d65

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

system-test/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ cp -r "system-test/busybench" "$TESTDIR"
106106
cd "$TESTDIR/busybench"
107107
108108
retry npm_install @mapbox/node-pre-gyp --save
109-
retry npm_install --nodedir="$NODEDIR" "$PROFILER" typescript gts; npm link ../../cloud-profiler-nodejs
109+
retry npm_install --nodedir="$NODEDIR" typescript gts; npm link ../../cloud-profiler-nodejs
110110
111111
npm run compile
112112

test/test-init-config.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,30 +25,24 @@ import * as packageJson from '../package.json';
2525
describe('nodeVersionOkay', () => {
2626
const version = parseInt(packageJson.engines.node.replace('>=', ''));
2727
it('should accept alpha versions', () => {
28-
console.log(version);
2928
assert.strictEqual(true, nodeVersionOkay(`v${version}.0.0-alpha.1`));
3029
});
3130
it('should accept beta versions', () => {
32-
console.log(version);
3331
assert.strictEqual(true, nodeVersionOkay(`v${version}.9.10-beta.2`));
3432
});
3533
it('should accept nightly versions', () => {
36-
console.log(version);
3734
assert.strictEqual(
3835
true,
3936
nodeVersionOkay(`v${version}.0.0-nightly2018000000`)
4037
);
4138
});
4239
it('should accept pre-release versions', () => {
43-
console.log(version);
4440
assert.strictEqual(true, nodeVersionOkay(`v${version}.0.0-pre`));
4541
});
4642
it('should accept v12.4.1', () => {
47-
console.log(version);
4843
assert.strictEqual(true, nodeVersionOkay(`v${version}.4.1`));
4944
});
5045
it('should not accept v11.4.0', () => {
51-
console.log(version);
5246
assert.strictEqual(false, nodeVersionOkay(`v${version - 1}.4.0`));
5347
});
5448
});

0 commit comments

Comments
 (0)