UNPKG

ranui

Version:

A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.

24 lines (23 loc) 788 B
/** * Integration tests — component composition scenarios. * * These cover bugs that unit tests cannot catch: layout interactions between * components, slot projection into host, and Custom Elements spec compliance. * * Rule: every bug found on the demo page or in a composition scenario must * produce a failing test here before the fix is merged. */ import '@/components/button'; import '@/components/card'; import '@/components/checkbox'; import '@/components/icon'; import '@/components/input'; import '@/components/loading'; import '@/components/message'; import '@/components/modal'; import '@/components/popover'; import '@/components/progress'; import '@/components/select'; import '@/components/select/option'; import '@/components/tab'; import '@/components/tabpane';