Skip to content

Commit

Permalink
fix(@angular/cli): fix text descriptions
Browse files Browse the repository at this point in the history
Text of initial tests must have sense.

Close #5501
  • Loading branch information
vadim-shb authored and hansl committed May 9, 2017
1 parent b1d0615 commit 17ae140
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('<%= classifiedModuleName %>Component', () => {
fixture.detectChanges();
});

it('should create', () => {
it('should be created', () => {
expect(component).toBeTruthy();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('<%= classifiedModuleName %>Service', () => {
});
});

it('should ...', inject([<%= classifiedModuleName %>Service], (service: <%= classifiedModuleName %>Service) => {
it('should be created', inject([<%= classifiedModuleName %>Service], (service: <%= classifiedModuleName %>Service) => {
expect(service).toBeTruthy();
}));
});

0 comments on commit 17ae140

Please sign in to comment.