Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba committed May 28, 2019
1 parent e31d359 commit 2dea9e4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
3 changes: 3 additions & 0 deletions src/cdk-experimental/tsconfig-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@
// Include the index.ts for each secondary entry-point
"./*/index.ts",
"**/*.spec.ts"
],
"exclude": [
"**/*.e2e.spec.ts"
]
}
3 changes: 2 additions & 1 deletion src/cdk/testing/e2e/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ exports_files(["tsconfig-e2e.json"])

ts_library(
name = "e2e",
srcs = glob(["test-util/**/*.ts"]),
testonly = True,
srcs = glob(["**/*.ts"]),
module_name = "@angular/cdk/testing/e2e",
deps = [
"@npm//@types/jasmine",
Expand Down
8 changes: 0 additions & 8 deletions src/cdk/testing/e2e/tsconfig-e2e.json

This file was deleted.

9 changes: 5 additions & 4 deletions src/cdk/tsconfig-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
"files": [
"./testing/index.ts",
"./testing/e2e/index.ts",
"typings.d.ts"
],
"angularCompilerOptions": {
Expand All @@ -32,10 +31,12 @@
"include": [
// Include the index.ts for each secondary entry-point
"./*/index.ts",
"**/*.spec.ts",
"./testing/e2e/index.ts"
"**/*.spec.ts"
],
"exclude": [
"**/schematics/**/*.ts"
"**/schematics/**/*.ts",
// Exclude end-to-end tests and utilities
"**/*.e2e.spec.ts",
"./testing/e2e/**"
]
}
3 changes: 3 additions & 0 deletions src/material-experimental/tsconfig-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,8 @@
// Include the index.ts for each secondary entry-point
"./*/index.ts",
"**/*.spec.ts"
],
"exclude": [
"**/*.e2e.spec.ts"
]
}
3 changes: 2 additions & 1 deletion src/material/tsconfig-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"index.ts"
],
"exclude": [
"**/schematics/**/*.ts"
"**/schematics/**/*.ts",
"**/*.e2e.spec.ts"
]
}

0 comments on commit 2dea9e4

Please sign in to comment.