transpose & history

This commit is contained in:
2020-06-13 17:41:53 +02:00
parent bcbd119fbd
commit 835ffa9e8e
19 changed files with 256 additions and 23 deletions

View File

@@ -0,0 +1,20 @@
import {TestBed} from '@angular/core/testing';
import {TransposeService} from './transpose.service';
describe('TransposeService', () => {
let service: TransposeService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(TransposeService);
});
it('should create map', () => {
const distance = service.getDistance('D', 'G');
const map = service.getMap('D', distance);
console.log(map);
expect(service).toBeTruthy();
});
});