9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import { LabelDirective } from './label.directive';
|
|
|
|
describe('LabelDirective', () => {
|
|
it('should create an instance', () => {
|
|
const directive = new LabelDirective();
|
|
expect(directive).toBeTruthy();
|
|
});
|
|
});
|