Design system.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

web-choice-react.test.ts 333 B

1234567891011121314
  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. });