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/SingleThread/boards.component.spec.ts
2022-11-29 22:31:55 +10:00

24 lines
599 B
TypeScript

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