Design system.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

web-information-react.test.ts 219 B

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