10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import { expect } from 'chai';
|
|
import { GBImporter } from '../services/GBImporterService';
|
|
|
|
describe('Hello function', () => {
|
|
it('should return empty test', () => {
|
|
const service = new GBImporter(undefined);
|
|
const result = 0;
|
|
expect(result).to.equal(0);
|
|
});
|
|
});
|