Skip to content

Commit 1d74a60

Browse files
filipesilvahansl
authored andcommitted
refactor: use _spec_large instead of _spec_big
1 parent ce54068 commit 1d74a60

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+18
-17
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test_script:
1414
- node --version
1515
- npm --version
1616
- npm test
17-
- npm test -- --big
17+
- npm run test-large
1818

1919
build: off
2020

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
- restore_cache: *_root_package_lock_key
4545
- run: npm run test -- --code-coverage --full
4646

47-
test-big:
47+
test-large:
4848
<<: *defaults
4949
steps:
5050
- checkout: *post_checkout
5151
- restore_cache: *_root_package_lock_key
52-
- run: npm run test -- --code-coverage --full --big
52+
- run: npm run test-large -- --code-coverage --full
5353

5454
integration:
5555
<<: *defaults
@@ -138,7 +138,7 @@ workflows:
138138
- test:
139139
requires:
140140
- build
141-
- test-big:
141+
- test-large:
142142
requires:
143143
- build
144144
- integration:

lib/istanbul-local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exports.codeMap = codeMap;
1818

1919
exports.istanbulRequireHook = function(code, filename) {
2020
// Skip spec files.
21-
if (filename.match(/_spec(_big)?\.ts$/)) {
21+
if (filename.match(/_spec(_large)?\.ts$/)) {
2222
return code;
2323
}
2424
const codeFile = codeMap.get(filename);

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"buildifier": "find . -type f \\( -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs $(bazel info bazel-bin)/external/com_github_bazelbuild_buildtools/buildifier/buildifier",
2626
"templates": "node ./bin/devkit-admin templates",
2727
"test": "node ./bin/devkit-admin test",
28+
"test-large": "node ./bin/devkit-admin test --large",
2829
"test:watch": "nodemon --watch packages -e ts ./bin/devkit-admin test",
2930
"validate": "node ./bin/devkit-admin validate",
3031
"validate-commits": "./bin/devkit-admin validate-commits",

packages/angular_devkit/build_optimizer/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ts_library(
2323
"src/purify/**",
2424
"src/index.ts",
2525
"**/*_spec.ts",
26-
"**/*_spec_big.ts",
26+
"**/*_spec_large.ts",
2727
],
2828
),
2929
tsconfig = "//:tsconfig.json",

packages/angular_devkit/build_webpack/test/browser/allow-js_spec_big.ts renamed to packages/angular_devkit/build_webpack/test/browser/allow-js_spec_large.ts

File renamed without changes.

packages/angular_devkit/build_webpack/test/browser/aot_spec_big.ts renamed to packages/angular_devkit/build_webpack/test/browser/aot_spec_large.ts

File renamed without changes.

packages/angular_devkit/build_webpack/test/browser/assets_spec_big.ts renamed to packages/angular_devkit/build_webpack/test/browser/assets_spec_large.ts

File renamed without changes.

packages/angular_devkit/build_webpack/test/browser/base-href_spec_big.ts renamed to packages/angular_devkit/build_webpack/test/browser/base-href_spec_large.ts

File renamed without changes.

packages/angular_devkit/build_webpack/test/browser/build-optimizer_spec_big.ts renamed to packages/angular_devkit/build_webpack/test/browser/build-optimizer_spec_large.ts

File renamed without changes.

0 commit comments

Comments
 (0)