Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 680ca27

Browse files
committed
remove ng2 selectors for routed components
1 parent 52cd466 commit 680ca27

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

public/docs/_examples/upgrade-phonecat-3-router/e2e-spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('PhoneCat Application', function() {
1717
expect(browser.getLocationAbsUrl()).toBe('/phones');
1818
});
1919

20-
xdescribe('View: Phone list', function() {
20+
describe('View: Phone list', function() {
2121

2222
beforeEach(function() {
2323
browser.get('index.html#!/phones');
@@ -75,7 +75,7 @@ describe('PhoneCat Application', function() {
7575

7676
});
7777

78-
xdescribe('View: Phone detail', function() {
78+
describe('View: Phone detail', function() {
7979

8080
beforeEach(function() {
8181
browser.get('index.html#!/phones/nexus-s');

public/docs/_examples/upgrade-phonecat-3-router/ts/app/phone-detail/phone-detail.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { Phone, PhoneData } from '../core/phone/phone.service';
99

1010
@Component({
1111
moduleId: module.id,
12-
selector: 'phone-detail',
1312
templateUrl: 'phone-detail.template.html',
1413
})
1514
export class PhoneDetailComponent {

public/docs/_examples/upgrade-phonecat-3-router/ts/app/phone-list/phone-list.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { Phone, PhoneData } from '../core/phone/phone.service';
77

88
@Component({
99
moduleId: module.id,
10-
selector: 'phone-list',
1110
templateUrl: 'phone-list.template.html'
1211
})
1312
export class PhoneListComponent {

0 commit comments

Comments
 (0)