add --no-restore when building functional test proj (#2889)

This commit is contained in:
Andrew Stanton-Nurse 2018-08-29 12:55:19 -07:00 committed by GitHub
parent 73e6742ba2
commit e2cc0e2a19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
"build:lint": "node ../common/node_modules/tslint/bin/tslint -c ../tslint.json -p ./tsconfig.json",
"build:webpack": "node ../common/node_modules/webpack-cli/bin/cli.js",
"build:parent": "cd .. && npm run build",
"pretest": "npm run build:parent && npm run build && dotnet build",
"pretest": "npm run build:parent && npm run build && dotnet build --no-restore",
"test": "npm run test:local --",
"test:inner": "npm run build && dotnet build && npm run test:local --",
"test:local": "ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts",