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