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.
 
 
 

12 lines
283 B

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