superset/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/isRequired.test.ts

8 lines
234 B
TypeScript
Raw Normal View History

import isRequired from '../../src/utils/isRequired';
describe('isRequired(field)', () => {
it('should throw error with the given field in the message', () => {
expect(() => isRequired('myField')).toThrowError(Error);
});
});