diff --git a/projects/angular-notifier/src/lib/components/notifier-container.component.html b/projects/angular-notifier/src/lib/components/notifier-container.component.html
index 562910c7..065c28b5 100644
--- a/projects/angular-notifier/src/lib/components/notifier-container.component.html
+++ b/projects/angular-notifier/src/lib/components/notifier-container.component.html
@@ -1,5 +1,5 @@
-
- -
+
+ -
diff --git a/projects/angular-notifier/src/lib/components/notifier-container.component.spec.ts b/projects/angular-notifier/src/lib/components/notifier-container.component.spec.ts
index 698e95d2..3be42db4 100644
--- a/projects/angular-notifier/src/lib/components/notifier-container.component.spec.ts
+++ b/projects/angular-notifier/src/lib/components/notifier-container.component.spec.ts
@@ -61,7 +61,7 @@ describe('Notifier Container Component', () => {
type: 'SHOW',
});
componentFixture.detectChanges();
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
expect(listElements.length).toBe(1);
@@ -353,7 +353,7 @@ describe('Notifier Container Component', () => {
tick();
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
expect(listElements.length).toBe(0);
expect(mockNotificationComponent.hide).toHaveBeenCalled();
@@ -397,7 +397,7 @@ describe('Notifier Container Component', () => {
tick();
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
expect(listElements.length).toBe(1);
expect(mockNotificationComponent.hide).not.toHaveBeenCalled();
@@ -454,7 +454,7 @@ describe('Notifier Container Component', () => {
tick();
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 3;
expect(listElements.length).toBe(1);
@@ -512,7 +512,7 @@ describe('Notifier Container Component', () => {
tick(testNotifierConfig.animations.hide.speed);
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 3;
expect(listElements.length).toBe(1);
@@ -566,7 +566,7 @@ describe('Notifier Container Component', () => {
tick(testNotifierConfig.animations.hide.speed - testNotifierConfig.animations.overlap);
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 3;
expect(listElements.length).toBe(1);
@@ -607,7 +607,7 @@ describe('Notifier Container Component', () => {
tick();
componentFixture.detectChanges();
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 2;
expect(listElements.length).toBe(0);
@@ -665,7 +665,7 @@ describe('Notifier Container Component', () => {
tick();
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 3;
expect(listElements.length).toBe(1);
@@ -744,7 +744,7 @@ describe('Notifier Container Component', () => {
tick();
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 3;
expect(listElements.length).toBe(1);
@@ -824,7 +824,7 @@ describe('Notifier Container Component', () => {
tick();
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 3;
expect(listElements.length).toBe(0);
@@ -876,7 +876,7 @@ describe('Notifier Container Component', () => {
tick(testNotifierConfig.animations.hide.speed + numberOfNotifications * testNotifierConfig.animations.hide.offset);
componentFixture.detectChanges(); // Run a second change detection (to update the template)
- const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list'));
+ const listElements: Array = componentFixture.debugElement.queryAll(By.css('.notifier__container-list-item'));
const expectedCallTimes = 3;
expect(listElements.length).toBe(0);