blob: 13b54791b3e1ba5c9878f2eca682a2e911dab1d3 [file] [log] [blame]
import { isRequired } from '@superset-ui/core/src';
describe('isRequired(field)', () => {
it('should throw error with the given field in the message', () => {
expect(() => isRequired('myField')).toThrow(Error);
});
});