let $ = require('../../execute') let { css, html, javascript } = require('../../syntax') let { readOutputFile, appendToInputFile, writeInputFile, waitForOutputFileCreation, waitForOutputFileChange, } = require('../../io')({ output: 'dist', input: 'src' }) describe('static build', () => { it('should be possible to generate tailwind output', async () => { await writeInputFile('index.html', html`
`) await $('rollup -c', { env: { NODE_ENV: 'production' }, }) expect(await readOutputFile('index.css')).toIncludeCss( css` .font-bold { font-weight: 700; } ` ) }) }) describe.each([{ TAILWIND_MODE: 'watch' }, { TAILWIND_MODE: undefined }])('watcher %p', (env) => { test(`classes are generated when the html file changes`, async () => { await writeInputFile('index.html', html`
`) let runningProcess = $('rollup -c --watch', { env }) await waitForOutputFileCreation('index.css') expect(await readOutputFile('index.css')).toIncludeCss( css` .font-bold { font-weight: 700; } ` ) await waitForOutputFileChange('index.css', async () => { await appendToInputFile('index.html', html`
`) }) expect(await readOutputFile('index.css')).toIncludeCss( css` .font-bold { font-weight: 700; } .font-normal { font-weight: 400; } ` ) await waitForOutputFileChange('index.css', async () => { await appendToInputFile('index.html', html`
`) }) expect(await readOutputFile('index.css')).toIncludeCss( css` .bg-red-500 { --tw-bg-opacity: 1; background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } .font-bold { font-weight: 700; } .font-normal { font-weight: 400; } ` ) return runningProcess.stop() }) test(`classes are generated when the tailwind.config.js file changes`, async () => { await writeInputFile('index.html', html`
`) let runningProcess = $('rollup -c --watch', { env }) await waitForOutputFileCreation('index.css') expect(await readOutputFile('index.css')).toIncludeCss( css` .font-bold { font-weight: 700; } @media (min-width: 768px) { .md\\:font-medium { font-weight: 500; } } ` ) await waitForOutputFileChange('index.css', async () => { await writeInputFile( '../tailwind.config.js', javascript` module.exports = { content: ['./src/index.html'], theme: { extend: { screens: { md: '800px' }, fontWeight: { bold: 'bold' } }, }, corePlugins: { preflight: false, }, plugins: [], } ` ) }) expect(await readOutputFile('index.css')).toIncludeCss( css` .font-bold { font-weight: bold; } @media (min-width: 800px) { .md\\:font-medium { font-weight: 500; } } ` ) return runningProcess.stop() }) test(`classes are generated when the index.css file changes`, async () => { await writeInputFile('index.html', html`
`) let runningProcess = $('rollup -c --watch', { env }) await waitForOutputFileCreation('index.css') expect(await readOutputFile('index.css')).toIncludeCss( css` .font-bold { font-weight: 700; } ` ) await waitForOutputFileChange('index.css', async () => { await writeInputFile( 'index.css', css` @tailwind base; @tailwind components; @tailwind utilities; @layer components { .btn { @apply px-2 py-1 rounded; } } ` ) }) expect(await readOutputFile('index.css')).toIncludeCss( css` .btn { border-radius: 0.25rem; padding-left: 0.5rem; padding-right: 0.5rem; padding-top: 0.25rem; padding-bottom: 0.25rem; } .font-bold { font-weight: 700; } ` ) await waitForOutputFileChange('index.css', async () => { await writeInputFile( 'index.css', css` @tailwind base; @tailwind components; @tailwind utilities; @layer components { .btn { @apply px-2 py-1 rounded bg-red-500; } } ` ) }) expect(await readOutputFile('index.css')).toIncludeCss( css` .btn { border-radius: 0.25rem; --tw-bg-opacity: 1; background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); padding-left: 0.5rem; padding-right: 0.5rem; padding-top: 0.25rem; padding-bottom: 0.25rem; } .font-bold { font-weight: 700; } ` ) return runningProcess.stop() }) })