import postcss from 'postcss' import path from 'path' import tailwind from '../../src' function run(input, config = {}) { return postcss(tailwind(config)).process(input, { from: path.resolve(__filename), }) } function css(templates) { return templates.join('') } function html(templates) { return templates.join('') } test('custom user-land utilities', () => { let config = { content: [ { raw: html`
`, }, ], corePlugins: { preflight: false }, theme: {}, plugins: [], } let input = css` @layer utilities { .align-banana { text-align: banana; } } @tailwind base; @tailwind components; @tailwind utilities; @layer utilities { .align-chocolate { text-align: chocolate; } } ` return run(input, config).then((result) => { expect(result.css).toMatchFormattedCss(css` .uppercase { text-transform: uppercase; } .align-banana { text-align: banana; } .hover\\:align-banana:hover { text-align: banana; } .focus\\:hover\\:align-chocolate:focus:hover { text-align: chocolate; } `) }) })