From 2ebfa2ff31e8744c0b0f27f0e3bb028265f232c7 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 2 Mar 2017 12:20:42 +0000 Subject: [PATCH] test(aio): add placeholder test descriptions --- aio/src/app/shared/link.directive.spec.ts | 5 ++++- aio/src/app/shared/location.service.spec.ts | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/aio/src/app/shared/link.directive.spec.ts b/aio/src/app/shared/link.directive.spec.ts index 7669908aae..912138d8da 100644 --- a/aio/src/app/shared/link.directive.spec.ts +++ b/aio/src/app/shared/link.directive.spec.ts @@ -1,4 +1,7 @@ import { LinkDirective } from './link.directive'; -describe('LinkDirective', () => { +xdescribe('LinkDirective', () => { + it('should attach to all anchor elements', () => {}); + it('should bind a property to the "href" attribute', () => {}); + it('should intercept clicks on the element and call `location.go()`', () => {}); }); diff --git a/aio/src/app/shared/location.service.spec.ts b/aio/src/app/shared/location.service.spec.ts index a0607f2b35..71b209f3f6 100644 --- a/aio/src/app/shared/location.service.spec.ts +++ b/aio/src/app/shared/location.service.spec.ts @@ -3,7 +3,7 @@ import { Location, LocationStrategy } from '@angular/common'; import { MockLocationStrategy } from '@angular/common/testing'; import { LocationService } from './location.service'; -fdescribe('LocationService', () => { +describe('LocationService', () => { let injector: ReflectiveInjector;