ngx-chess-board
Version:
Chess game component
19 lines (14 loc) • 565 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NgxChessBoardComponent } from './ngx-chess-board.component';
describe('NgxChessGameComponent', () => {
let fixture: ComponentFixture<NgxChessBoardComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [NgxChessBoardComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NgxChessBoardComponent);
fixture.detectChanges();
});
});