Design system.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

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