Design system.
 
 
 

11 rindas
258 B

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