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.
 
 
 

11 lines
248 B

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