mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[HXCS-1166] fix lint
This commit is contained in:
@@ -228,7 +228,7 @@ describe('NotificationService', () => {
|
|||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
|
|
||||||
expect(document.querySelector('.custom-template-class')).not.toBeNull();
|
expect(document.querySelector('.custom-template-class')).not.toBeNull();
|
||||||
expect(document.querySelector('.custom-template-class').innerHTML).toEqual('Custom content with templateRef');
|
expect(document.querySelector('.custom-template-class')?.innerHTML).toEqual('Custom content with templateRef');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should open a message notification bar with action and custom templateRef configuration', (done) => {
|
it('should open a message notification bar with action and custom templateRef configuration', (done) => {
|
||||||
@@ -240,7 +240,7 @@ describe('NotificationService', () => {
|
|||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
|
|
||||||
expect(document.querySelector('.custom-template-class')).not.toBeNull();
|
expect(document.querySelector('.custom-template-class')).not.toBeNull();
|
||||||
expect(document.querySelector('.custom-template-class').innerHTML).toEqual('Custom content with templateRef');
|
expect(document.querySelector('.custom-template-class')?.innerHTML).toEqual('Custom content with templateRef');
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user