This repository was archived by the owner on Feb 20, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ cp -r "system-test/busybench" "$TESTDIR"
106106cd "$TESTDIR/busybench"
107107
108108retry 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
111111npm run compile
112112
Original file line number Diff line number Diff line change @@ -25,30 +25,24 @@ import * as packageJson from '../package.json';
2525describe ( '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} ) ;
You can’t perform that action at this time.
0 commit comments