(_id: string)
| 2810 | expect( |
| 2811 | await run(classList, '@tailwind utilities; @plugin "./plugin.js";', { |
| 2812 | async loadModule(_id: string) { |
| 2813 | return { |
| 2814 | path: '', |
| 2815 | base: '/', |
| 2816 | module: createPlugin(({ matchVariant }) => { |
| 2817 | matchVariant('is-data', (value) => `&:is([data-${value}])`, { |
| 2818 | values: { |
| 2819 | DEFAULT: 'default', |
| 2820 | foo: 'foo', |
| 2821 | bar: 'bar', |
| 2822 | }, |
| 2823 | }) |
| 2824 | }), |
| 2825 | } |
| 2826 | }, |
| 2827 | }), |
| 2828 | ).toMatchInlineSnapshot(` |
| 2829 | " |
nothing calls this directly
no test coverage detected