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