botserver/packages/core.gbapp/tests/core.test.ts
Rodrigo Rodriguez (pragmatismo.io) ea978f7d65 fix(config): TSLint parsed on all files.
new(config): Several CI integrations.
2018-11-12 12:20:44 -02:00

14 lines
338 B
TypeScript

import { expect } from 'chai';
import 'mocha';
import {GBImporter} from '../services/GBImporter';
describe('Hello function', () => {
it('should return empty test', () => {
const service = new GBImporter(null);
//service.importIfNotExistsBotPackage(null, null);
const result = 0;
expect(result).to.equal(0);
});
});