nycJSorg/angular-presentation

View on GitHub
apps/codelab/src/app/components/external-link-directive/external-link-directive.directive.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ExternalLinkDirectiveDirective } from './external-link-directive.directive';

describe('ExternalLinkDirectiveDirective', () => {
  it('should create an instance', () => {
    const directive = new ExternalLinkDirectiveDirective({
      nativeElement: document.createElement('a')
    });
    expect(directive).toBeTruthy();
  });
});