Skip to content

Commit f871bf3

Browse files
committed
chore(tests): remove imports to allow exclusion of other tests
1 parent fe1581e commit f871bf3

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

addon/ng2/blueprints/class/files/__path__/__name__.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import {
44
beforeEach, beforeEachProviders,
5-
describe, ddescribe, xdescribe,
6-
expect, it, iit, xit,
5+
describe, xdescribe,
6+
expect, it, xit,
77
async, inject
88
} from '@angular/core/testing';
99
import {<%= classifiedModuleName %>} from './<%= fileName %>';

addon/ng2/blueprints/component/files/__path__/__name__.component.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { DebugElement } from '@angular/core';
55

66
import {
77
beforeEach, beforeEachProviders,
8-
describe, ddescribe, xdescribe,
9-
expect, it, iit, xit,
8+
describe, xdescribe,
9+
expect, it, xit,
1010
async, inject
1111
} from '@angular/core/testing';
1212

addon/ng2/blueprints/directive/files/__path__/__name__.directive.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import {
44
beforeEach, beforeEachProviders,
5-
describe, ddescribe, xdescribe,
6-
expect, it, iit, xit,
5+
describe, xdescribe,
6+
expect, it, xit,
77
async, inject
88
} from '@angular/core/testing';
99
import { <%= classifiedModuleName %> } from './<%= dasherizedModuleName %>.directive';

addon/ng2/blueprints/ng2/files/__path__/app/app.component.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import {
44
beforeEach, beforeEachProviders,
5-
describe, ddescribe, xdescribe,
6-
expect, it, iit, xit,
5+
describe, xdescribe,
6+
expect, it, xit,
77
async, inject
88
} from '@angular/core/testing';
99
import { AppComponent } from './app.component';

addon/ng2/blueprints/pipe/files/__path__/__name__.pipe.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import {
44
beforeEach, beforeEachProviders,
5-
describe, ddescribe, xdescribe,
6-
expect, it, iit, xit,
5+
describe, xdescribe,
6+
expect, it, xit,
77
async, inject
88
} from '@angular/core/testing';
99
import { <%= classifiedModuleName %>Pipe } from './<%= dasherizedModuleName %>.pipe';

addon/ng2/blueprints/service/files/__path__/__name__.service.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import {
44
beforeEach, beforeEachProviders,
5-
describe, ddescribe, xdescribe,
6-
expect, it, iit, xit,
5+
describe, xdescribe,
6+
expect, it, xit,
77
async, inject
88
} from '@angular/core/testing';
99
import { <%= classifiedModuleName %>Service } from './<%= dasherizedModuleName %>.service';

0 commit comments

Comments
 (0)