Files
hertzbeat/web-app/src/app/routes/alert/alert-center/alert-center.component.spec.ts
2021-12-12 10:33:27 +08:00

26 lines
662 B
TypeScript

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