This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
universal-statuspage/src/app/status/status.component.spec.ts

26 lines
642 B
TypeScript
Raw Normal View History

2020-11-27 18:07:12 +00:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2020-05-04 23:33:14 +00:00
import { StatusComponent } from './status.component';
describe('StatusComponent', () => {
let component: StatusComponent;
let fixture: ComponentFixture<StatusComponent>;
2020-11-27 18:07:12 +00:00
beforeEach(waitForAsync(() => {
2020-05-04 23:33:14 +00:00
TestBed.configureTestingModule({
declarations: [ StatusComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(StatusComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});