test(aio): add placeholder test descriptions

This commit is contained in:
Peter Bacon Darwin 2017-03-02 12:20:42 +00:00 committed by Igor Minar
parent b09ee424bf
commit 2ebfa2ff31
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
import { LinkDirective } from './link.directive'; 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()`', () => {});
}); });

View File

@ -3,7 +3,7 @@ import { Location, LocationStrategy } from '@angular/common';
import { MockLocationStrategy } from '@angular/common/testing'; import { MockLocationStrategy } from '@angular/common/testing';
import { LocationService } from './location.service'; import { LocationService } from './location.service';
fdescribe('LocationService', () => { describe('LocationService', () => {
let injector: ReflectiveInjector; let injector: ReflectiveInjector;