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

web-navigation-react.test.ts 221 B

123456789
  1. import * as WebNavigationReact from '.';
  2. describe('web-navigation-react', () => {
  3. it.each([
  4. 'LinkButton',
  5. ])('exports %s', (namedExport) => {
  6. expect(WebNavigationReact).toHaveProperty(namedExport);
  7. });
  8. });