diff --git a/packages/@angular/cli/blueprints/component/files/__path__/__name__.component.spec.ts b/packages/@angular/cli/blueprints/component/files/__path__/__name__.component.spec.ts index 61f4236b20a3..fbbacebd8d03 100644 --- a/packages/@angular/cli/blueprints/component/files/__path__/__name__.component.spec.ts +++ b/packages/@angular/cli/blueprints/component/files/__path__/__name__.component.spec.ts @@ -19,7 +19,7 @@ describe('<%= classifiedModuleName %>Component', () => { fixture.detectChanges(); }); - it('should create', () => { + it('should be created', () => { expect(component).toBeTruthy(); }); }); diff --git a/packages/@angular/cli/blueprints/ng/files/gitignore b/packages/@angular/cli/blueprints/ng/files/gitignore index 6708ebc05606..54bfd2001e64 100755 --- a/packages/@angular/cli/blueprints/ng/files/gitignore +++ b/packages/@angular/cli/blueprints/ng/files/gitignore @@ -27,7 +27,7 @@ # misc /.sass-cache /connect.lock -/coverage/* +/coverage /libpeerconnection.log npm-debug.log testem.log diff --git a/packages/@angular/cli/blueprints/service/files/__path__/__name__.service.spec.ts b/packages/@angular/cli/blueprints/service/files/__path__/__name__.service.spec.ts index 19fab2e41f9a..f0eb357b06ac 100644 --- a/packages/@angular/cli/blueprints/service/files/__path__/__name__.service.spec.ts +++ b/packages/@angular/cli/blueprints/service/files/__path__/__name__.service.spec.ts @@ -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(); })); });