Remove strict null checks from test.sh

#60565
This commit is contained in:
Matt Bierner 2018-10-11 17:17:32 -07:00
parent fa0b79434b
commit e5f9b64efc
2 changed files with 0 additions and 7 deletions

View file

@ -15,10 +15,6 @@ set CODE=".build\electron\%NAMESHORT%"
node build\lib\electron.js
if %errorlevel% neq 0 node .\node_modules\gulp\bin\gulp.js electron
:: Pretest
call yarn strict-null-check
if %errorlevel% neq 0 exit /b %errorlevel%
:: Run tests
%CODE% .\test\electron\index.js %*

View file

@ -28,9 +28,6 @@ test -d node_modules || yarn
# Get electron
node build/lib/electron.js || ./node_modules/.bin/gulp electron
# Pretest
yarn strict-null-check
# Unit Tests
if [[ "$OSTYPE" == "darwin"* ]]; then
cd $ROOT ; ulimit -n 4096 ; \