Files
hertzbeat/web-app/src/app/routes/alert/alert-setting/alert-setting.component.spec.ts
2021-12-23 15:59:49 +08:00

25 lines
662 B
TypeScript

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