File tree Expand file tree Collapse file tree
bazel/ts_project/strict_deps Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ import {readTsConfig} from './tsconfig.mjs';
1919const [ manifestExecPath , expectedFailureRaw ] = process . argv . slice ( 2 ) ;
2020const expectedFailure = expectedFailureRaw === 'true' ;
2121
22- assert ( process . env [ 'JS_BINARY__RUNFILES' ] !== undefined , 'JS_BINARY__RUNFILES is not defined' ) ;
23- assert ( process . env [ 'TEST_WORKSPACE' ] !== undefined , 'TEST_WORKSPACE is not defined' ) ;
22+ assert ( process . env [ 'JS_BINARY__RUNFILES' ] , 'JS_BINARY__RUNFILES is not defined' ) ;
23+ assert ( process . env [ 'TEST_WORKSPACE' ] , 'TEST_WORKSPACE is not defined' ) ;
2424
2525const runfilesRoot = path . join ( process . env [ 'JS_BINARY__RUNFILES' ] , process . env [ 'TEST_WORKSPACE' ] ) ;
2626const manifest : StrictDepsManifest = JSON . parse ( await fs . readFile ( manifestExecPath , 'utf8' ) ) ;
You can’t perform that action at this time.
0 commit comments