test(aio): add placeholder test descriptions
This commit is contained in:
parent
b09ee424bf
commit
2ebfa2ff31
|
@ -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()`', () => {});
|
||||||
});
|
});
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue