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" ] }