From 707da90d3a09e05a7f92f0b41c4a8f8a5f9ab441 Mon Sep 17 00:00:00 2001 From: crisbeto Date: Wed, 23 Oct 2019 22:50:09 +0200 Subject: [PATCH] chore: clean up leftover references to private/testing Cleans up a few leftover places that are referring to `private/testing` which doesn't exist anymore. --- .github/CODEOWNERS | 1 - src/cdk/tsconfig-tests.json | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 819166408971..cf733e981b21 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -70,7 +70,6 @@ /src/cdk/coercion/** @jelbourn /src/cdk/collections/** @jelbourn @crisbeto @andrewseguin /src/cdk/drag-drop/** @crisbeto -/src/cdk/private/testing/** @devversion /src/cdk/keycodes/** @jelbourn /src/cdk/layout/** @jelbourn /src/cdk/observers/** @jelbourn @crisbeto diff --git a/src/cdk/tsconfig-tests.json b/src/cdk/tsconfig-tests.json index a0c1ff35c635..14c53e8e2436 100644 --- a/src/cdk/tsconfig-tests.json +++ b/src/cdk/tsconfig-tests.json @@ -31,17 +31,12 @@ "include": [ // Include the index.ts for each secondary entry-point. "./*/index.ts", - // Include the "private/testing" internal entry-point. - "./private/testing/", // Include all spec files of the CDK. "**/*.spec.ts" ], "exclude": [ "**/schematics/**/*.ts", // Exclude end-to-end tests and utilities. - "**/*.e2e.spec.ts", - // Exclude internal e2e testing utilities. These are not needed by tests - // which execute through gulp. - "./private/testing/e2e/**" + "**/*.e2e.spec.ts" ] }