This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/pages/BoardThreads/op/op.component.spec.ts
RakVhalate d702e01f16
All checks were successful
continuous-integration/drone/push Build is passing
Did some
2022-11-29 22:31:55 +10:00

24 lines
571 B
TypeScript

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