[web-app] 告警中心告警列表展示

This commit is contained in:
tomsun28
2021-12-13 14:51:08 +08:00
parent 83449a8556
commit e22dcf30bc
10 changed files with 229 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { AlertService } from './alert.service';
describe('AlertService', () => {
let service: AlertService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AlertService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});