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.

web-navigation-react.test.ts 268 B

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