From e2cc0e2a19f8cb87789cba953bb13afdcc331d05 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Wed, 29 Aug 2018 12:55:19 -0700 Subject: [PATCH] add --no-restore when building functional test proj (#2889) --- clients/ts/FunctionalTests/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/ts/FunctionalTests/package.json b/clients/ts/FunctionalTests/package.json index 34ab4d831e..bc2d8bb23a 100644 --- a/clients/ts/FunctionalTests/package.json +++ b/clients/ts/FunctionalTests/package.json @@ -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",