2020-11-17 17:07:32 +00:00
|
|
|
var { addPointsToTrack } = require('./tracks');
|
2020-11-17 17:01:29 +00:00
|
|
|
|
|
|
|
describe('addPointsToTrack', () => {
|
|
|
|
it('is a function', () => {
|
2020-11-17 17:07:32 +00:00
|
|
|
expect(typeof addPointsToTrack).toBe('function');
|
|
|
|
});
|
|
|
|
});
|