Skip to content

Commit 09ea1d3

Browse files
committed
test(element-ref): update
1 parent be8aacd commit 09ea1d3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

projects/coreui-angular/src/lib/shared/element-ref.directive.spec.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class MockElementRef extends ElementRef {}
77
describe('ElementRefDirective', () => {
88
beforeEach(() => {
99
TestBed.configureTestingModule({
10-
providers: [{ provide: ElementRef, useClass: MockElementRef }],
10+
providers: [{ provide: ElementRef, useClass: MockElementRef }]
1111
});
1212
});
1313
it('should create an instance', () => {
@@ -16,4 +16,11 @@ describe('ElementRefDirective', () => {
1616
expect(directive).toBeTruthy();
1717
});
1818
});
19+
20+
it('should expose elementRef', () => {
21+
TestBed.runInInjectionContext(() => {
22+
const directive = new ElementRefDirective();
23+
expect(directive.elementRef).toBeInstanceOf(ElementRef);
24+
});
25+
});
1926
});

0 commit comments

Comments
 (0)