import fs from 'fs' import path from 'path' import { run, html, css } from './util/run' it('raw content', () => { let config = { content: [ { raw: html`
`, }, ], corePlugins: { preflight: false }, } let input = css` @tailwind components; @tailwind utilities; ` return run(input, config).then((result) => { expect(result.css).toMatchFormattedCss( fs.readFileSync(path.resolve(__dirname, './raw-content.test.css'), 'utf8') ) }) })