Files
YoutubeDL-Material/src/app/components/notifications-list/notifications-list.component.spec.ts
Isaac Abadi b51f45c704 Completed notification functionality
Minor code cleanup
2022-11-25 17:47:30 -05:00

24 lines
677 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NotificationsListComponent } from './notifications-list.component';
describe('NotificationsListComponent', () => {
let component: NotificationsListComponent;
let fixture: ComponentFixture<NotificationsListComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ NotificationsListComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(NotificationsListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});