Design system.
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
333 B

  1. import { describe, it, expect } from 'vitest';
  2. import * as WebChoiceReact from '.';
  3. describe('web-choice-react', () => {
  4. it.each([
  5. 'ComboBox',
  6. 'DropdownSelect',
  7. 'MenuSelect',
  8. 'RadioButton',
  9. 'RadioTickBox',
  10. ])('exports %s', (namedExport) => {
  11. expect(WebChoiceReact).toHaveProperty(namedExport);
  12. });
  13. });