Design system.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

14 行
329 B

  1. import { describe, it, expect } from 'vitest';
  2. import * as WebFormattedReact from '.';
  3. describe('web-formatted-react', () => {
  4. it.each([
  5. 'EmailInput',
  6. 'PatternTextInput',
  7. 'PhoneNumberInput',
  8. 'UrlInput',
  9. ])('exports %s', (namedExport) => {
  10. expect(WebFormattedReact).toHaveProperty(namedExport);
  11. });
  12. });