coreui-angular-ex
Version:
CoreUI Components Library for Angular
13 lines (11 loc) • 475 B
text/typescript
import { TabContentRefDirective } from './tab-content-ref.directive';
import { TabService } from './tab.service';
import { ChangeDetectorRef } from '@angular/core';
describe('TabContentRefDirective', () => {
let changeDetectorRef: ChangeDetectorRef;
it('should create an instance', () => {
const tabService = new TabService();
const directive = new TabContentRefDirective(changeDetectorRef, tabService);
expect(directive).toBeTruthy();
});
});