From 8e38291156623a82f10dc449a87cbbd3f8916447 Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Thu, 26 May 2016 13:16:53 -0700 Subject: [PATCH] chore: enable the compiler_cli tests again. Closes #8864 --- modules/@angular/compiler_cli/integrationtest.sh | 6 +++--- .../@angular/compiler_cli/integrationtest/tsconfig.json | 7 +------ 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/modules/@angular/compiler_cli/integrationtest.sh b/modules/@angular/compiler_cli/integrationtest.sh index 86c88c6224..dc4cdc1c2a 100755 --- a/modules/@angular/compiler_cli/integrationtest.sh +++ b/modules/@angular/compiler_cli/integrationtest.sh @@ -5,7 +5,7 @@ set -e -o pipefail cd $(dirname $0) cd $(pwd)/../../.. export NODE_PATH=$NODE_PATH:$(pwd)/dist/all:$(pwd)/dist/tools -readonly TESTDIR="modules/@angular/compiler_cli/integrationtest" -rm $TESTDIR/src/*.{ngfactory,css.shim}.ts -node dist/all/@angular/compiler_cli/src/main -p $TESTDIR +readonly TESTDIR="@angular/compiler_cli/integrationtest" +rm -f modules/$TESTDIR/src/*.{ngfactory,css.shim}.ts +node dist/all/@angular/compiler_cli/src/main -p modules/$TESTDIR node dist/tools/cjs-jasmine -- $TESTDIR/**/*_spec.js diff --git a/modules/@angular/compiler_cli/integrationtest/tsconfig.json b/modules/@angular/compiler_cli/integrationtest/tsconfig.json index 9e5615fec1..62205e11cf 100644 --- a/modules/@angular/compiler_cli/integrationtest/tsconfig.json +++ b/modules/@angular/compiler_cli/integrationtest/tsconfig.json @@ -19,10 +19,5 @@ "paths": { "@angular/*": ["../../../../dist/all/@angular/*"] } - }, - - "files": [ - "src/bootstrap.ts", - "typings.d.ts" - ] + } }