2018-11-12 12:20:44 -02:00
|
|
|
import { expect } from 'chai';
|
2019-03-09 16:59:31 -03:00
|
|
|
import { GBImporter } from '../services/GBImporterService';
|
2018-11-11 17:31:17 -02:00
|
|
|
|
|
|
|
describe('Hello function', () => {
|
|
|
|
it('should return empty test', () => {
|
2019-03-09 16:59:31 -03:00
|
|
|
const service = new GBImporter(undefined);
|
2018-11-11 17:31:17 -02:00
|
|
|
const result = 0;
|
|
|
|
expect(result).to.equal(0);
|
|
|
|
});
|
|
|
|
});
|