Website for showcasing all features of Tesseract Web.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
319 B

  1. import * as WebOptionReact from '.';
  2. describe('web-option-react', () => {
  3. it.each([
  4. 'DropdownSelect',
  5. 'RadioButton',
  6. 'RadioTickBox',
  7. 'ToggleButton',
  8. 'ToggleSwitch',
  9. 'ToggleTickBox',
  10. ])('should export %s', (namedExport) => {
  11. expect(WebOptionReact).toHaveProperty(namedExport);
  12. });
  13. });