UNPKG

@mcdevsl/mc-superset-ui

Version:
17 lines (15 loc) 453 B
import { configure, t, tn } from '@superset-ui/core/src/translation'; describe('index', () => { it('exports configure()', () => { expect(configure).toBeDefined(); expect(configure).toBeInstanceOf(Function); }); it('exports t()', () => { expect(t).toBeDefined(); expect(t).toBeInstanceOf(Function); }); it('exports tn()', () => { expect(tn).toBeDefined(); expect(tn).toBeInstanceOf(Function); }); });