8000 chore(test): make test descriptions consistent (#3112) · oneiltdev/angular-cli@ed0fd3e · GitHub
[go: up one dir, main page]

Skip to content

Commit ed0fd3e

Browse files
intellixhansl
authored andcommitted
chore(test): make test descriptions consistent (angular#3112)
1 parent 7c834a8 commit ed0fd3e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/angular-cli/blueprints/directive/files/__path__/__name__.directive.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { TestBed, async } from '@angular/core/testing';
44
import { <%= classifiedModuleName %>Directive } from './<%= dasherizedModuleName %>.directive';
55

6-
describe('Directive: <%= classifiedModuleName %>', () => {
6+
describe('<%= classifiedModuleName %>Directive', () => {
77
it('should create an instance', () => {
88
let directive = new <%= classifiedModuleName %>Directive();
99
expect(directive).toBeTruthy();

packages/angular-cli/blueprints/ng2/files/__path__/app/app.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { TestBed, async } from '@angular/core/testing';
44
import { AppComponent } from './app.component';
55

6-
describe('App: <%= jsComponentName %>', () => {
6+
describe('AppComponent', () => {
77
beforeEach(() => {
88
TestBed.configureTestingModule({
99
declarations: [

packages/angular-cli/blueprints/pipe/files/__path__/__name__.pipe.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { TestBed, async } from '@angular/core/testing';
44
import { <%= classifiedModuleName %>Pipe } from './<%= dasherizedModuleName %>.pipe';
55

6-
describe('Pipe: <%= classifiedModuleName %>', () => {
6+
describe('<%= classifiedModuleName %>Pipe', () => {
77
it('create an instance', () => {
88
let pipe = new <%= classifiedModuleName %>Pipe();
99
expect(pipe).toBeTruthy();

packages/angular-cli/blueprints/service/files/__path__/__name__.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { TestBed, async, inject } from '@angular/core/testing';
44
import { <%= classifiedModuleName %>Service } from './<%= dasherizedModuleName %>.service';
55

6-
describe('Service: <%= classifiedModuleName %>', () => {
6+
describe('<%= classifiedModuleName %>Service', () => {
77
beforeEach(() => {
88
TestBed.configureTestingModule({
99
providers: [<%= classifiedModuleName %>Service]

0 commit comments

Comments
 (0)
0