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