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.
 
 
 

13 lines
310 B

  1. import { describe, it, expect } from 'vitest';
  2. import * as WebFreeformReact from '.';
  3. describe('web-freeform-react', () => {
  4. it.each([
  5. 'MaskedTextInput',
  6. 'MultilineTextInput',
  7. 'TextInput',
  8. ])('exports %s', (namedExport) => {
  9. expect(WebFreeformReact).toHaveProperty(namedExport);
  10. });
  11. });