@thoughtspot/visual-embed-sdk
Version:
ThoughtSpot Embed SDK
10 lines • 389 B
JavaScript
import * as Exports from './all-types-export';
describe('Exports', () => {
it('should have exports', () => {
expect(typeof Exports).toBe('object');
});
it('should not have undefined exports', () => {
Object.entries(Exports).forEach(([, exportValue]) => { expect(Boolean(exportValue)).toBe(true); });
});
});
//# sourceMappingURL=all-types-export.spec.js.map