Skip to content

Commit

Permalink
fix(@angular/cli): remove outdated test command option --build
Browse files Browse the repository at this point in the history
Close #5235
  • Loading branch information
Charles Lyding authored and filipesilva committed Mar 9, 2017
1 parent 1834fc1 commit fcb1f35
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
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

0 comments on commit fcb1f35

Please sign in to comment.