Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(@angular/cli): remove outdated test command option --build #5235

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/documentation/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ You can run tests with coverage via `--code-coverage`. The coverage report will

`--browsers` Override which browsers tests are run against.

`--build` Build prior to running tests.

`--code-coverage` Coverage report will be in the coverage/ directory.

`--colors` Enable or disable colors in the output (reporters and logs).
Expand Down
7 changes: 0 additions & 7 deletions packages/@angular/cli/commands/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export interface TestOptions {
log?: string;
port?: number;
reporters?: string;
build?: boolean;
sourcemap?: boolean;
progress?: boolean;
config: string;
Expand Down Expand Up @@ -85,12 +84,6 @@ const TestCommand = EmberTestCommand.extend({
type: String,
description: 'List of reporters to use.'
},
{
name: 'build',
type: Boolean,
default: true,
description: 'Build prior to running tests.'
},
{
name: 'sourcemap',
type: Boolean,
Expand Down