8000 bugfix(generate): removes bad imports when generating a class by deebloo · Pull Request #2492 · angular/angular-cli · GitHub
[go: up one dir, main page]

Skip to content

bugfix(generate): removes bad imports when generating a class #2492

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

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove accidental arg
  • Loading branch information
Danny Blue committed Oct 3, 2016
commit 0b0928942a8edfcb0cbc49c9c4f8794af1a2b718
2 changes: 1 addition & 1 deletion tests/e2e/tests/generate/pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function() {
// Create the pipe in the same directory.
const pipeDir = join('src', 'app');

return ng('generate', 'pipe', 'test-pipe', '--spec')
return ng('generate', 'pipe', 'test-pipe')
.then(() => expectFileToExist(pipeDir))
.then(() => expectFileToExist(join(pipeDir, 'test-pipe.pipe.ts')))
.then(() => expectFileToExist(join(pipeDir, 'test-pipe.pipe.spec.ts')))
Expand Down
0