2021-12-12 10:33:27 +08:00
|
|
|
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({
|
2021-12-23 15:59:49 +08:00
|
|
|
declarations: [AlertSettingComponent]
|
|
|
|
|
}).compileComponents();
|
2021-12-12 10:33:27 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
fixture = TestBed.createComponent(AlertSettingComponent);
|
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|