Did some
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-29 22:31:55 +10:00
parent 4f38fb65c8
commit d702e01f16
36 changed files with 84 additions and 105 deletions

View File

@@ -0,0 +1,23 @@
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();
});
});