Skip to content

Commit 14b4c9c

Browse files
Refactoring
1 parent 5c91b38 commit 14b4c9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/core/template.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ describe('DevExtreme Angular widget\'s template', () => {
179179
let fixture = TestBed.createComponent(TestContainerComponent);
180180
fixture.detectChanges();
181181

182-
let element = fixture.nativeElement.querySelector('dx-test').querySelector('div');
183-
expect(element.outerText).toBe('index: 5');
182+
let element = fixture.nativeElement.querySelector('div');
183+
expect(element.textContent).toBe('index: 5');
184184
}));
185185

186186
});

0 commit comments

Comments
 (0)