botserver/packages/core.gbapp/tests/core.test.ts
2019-03-09 16:59:31 -03:00

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);
});
});