tailwindcss/integrations/parcel/tests/integration.test.js
Philippe Gaultier ff52f8caf2
Fix require.cache error when loaded through a typescript file in Node 22.18+ (#18665)
Co-authored-by: Jordan Pittman <jordan@cryptica.me>
2025-08-22 12:44:51 -04:00

376 lines
9.0 KiB
JavaScript

let $ = require('../../execute')
let { css, html, javascript } = require('../../syntax')
let {
appendToInputFile,
readOutputFile,
removeFile,
waitForOutputFileChange,
waitForOutputFileCreation,
writeInputFile,
} = require('../../io')({ output: 'dist', input: 'src' })
describe('static build', () => {
it('should be possible to generate tailwind output', async () => {
await writeInputFile(
'index.html',
html`
<link rel="stylesheet" href="./index.css" />
<div class="font-bold"></div>
`
)
await $('parcel build ./src/index.html --no-cache', {
env: { NODE_ENV: 'production' },
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: 700;
}
`)
})
it('can use a tailwind.config.js configuration file with ESM syntax', async () => {
await removeFile('tailwind.config.js')
await writeInputFile(
'index.html',
html`
<link rel="stylesheet" href="./index.css" />
<div class="bg-primary"></div>
`
)
await writeInputFile(
'index.css',
css`
@tailwind base;
@tailwind components;
@tailwind utilities;
`
)
await writeInputFile(
'../tailwind.config.js',
javascript`
export default {
content: ['./src/index.html'],
theme: {
extend: {
colors: {
primary: 'black',
},
},
},
corePlugins: {
preflight: false,
},
}
`
)
await $('parcel build ./src/index.html --no-cache', {
env: { NODE_ENV: 'production' },
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.bg-primary {
--tw-bg-opacity: 1;
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
`)
})
it('can use a tailwind.config.ts configuration file', async () => {
await removeFile('tailwind.config.js')
await writeInputFile(
'index.html',
html`
<link rel="stylesheet" href="./index.css" />
<div class="bg-primary"></div>
`
)
await writeInputFile(
'index.css',
css`
@tailwind base;
@tailwind components;
@tailwind utilities;
`
)
await writeInputFile(
'../tailwind.config.ts',
javascript`
import type { Config } from 'tailwindcss'
export default {
content: ['./src/index.html'],
theme: {
extend: {
colors: {
primary: 'black',
},
},
},
corePlugins: {
preflight: false,
},
} satisfies Config
`
)
await $('parcel build ./src/index.html --no-cache', {
env: { NODE_ENV: 'production' },
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.bg-primary {
--tw-bg-opacity: 1;
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
`)
})
})
describe('watcher', () => {
test('classes are generated when the html file changes', async () => {
await writeInputFile(
'index.html',
html`
<link rel="stylesheet" href="./index.css" />
<div class="font-bold"></div>
`
)
let runningProcess = $('parcel watch ./src/index.html --no-cache')
await waitForOutputFileCreation(/parcel\.\w+\.css$/)
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: 700;
}
`)
await waitForOutputFileChange(/parcel\.\w+\.css$/, async () => {
await appendToInputFile('index.html', html`<div class="font-normal"></div>`)
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: 700;
}
.font-normal {
font-weight: 400;
}
`)
await waitForOutputFileChange(/parcel\.\w+\.css$/, async () => {
await appendToInputFile('index.html', html`<div class="bg-red-500"></div>`)
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.bg-red-500 {
--tw-bg-opacity: 1;
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.font-bold {
font-weight: 700;
}
.font-normal {
font-weight: 400;
}
`)
return runningProcess.stop()
})
test.skip('classes are generated when globbed files change', async () => {
await writeInputFile('index.html', html` <link rel="stylesheet" href="./index.css" /> `)
await writeInputFile('glob/index.html', html` <div class="font-bold"></div> `)
let runningProcess = $('parcel watch ./src/index.html --no-cache')
await waitForOutputFileCreation(/parcel\.\w+\.css$/)
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: 700;
}
`)
await waitForOutputFileChange(/parcel\.\w+\.css$/, async () => {
await appendToInputFile('glob/index.html', html`<div class="font-normal"></div>`)
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: 700;
}
.font-normal {
font-weight: 400;
}
`)
await waitForOutputFileChange(/parcel\.\w+\.css$/, async () => {
await appendToInputFile('glob/index.html', html`<div class="bg-red-500"></div>`)
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.bg-red-500 {
--tw-bg-opacity: 1;
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.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`
<link rel="stylesheet" href="./index.css" />
<div class="font-bold md:font-medium"></div>
`
)
let runningProcess = $('parcel watch ./src/index.html --no-cache')
await waitForOutputFileCreation(/parcel\.\w+\.css$/)
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: 700;
}
@media (width >= 768px) {
.md\:font-medium {
font-weight: 500;
}
}
`)
await waitForOutputFileChange(/parcel\.\w+\.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(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: bold;
}
@media (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`
<link rel="stylesheet" href="./index.css" />
<div class="btn font-bold"></div>
`
)
let runningProcess = $('parcel watch ./src/index.html --no-cache')
await waitForOutputFileCreation(/parcel\.\w+\.css$/)
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.font-bold {
font-weight: 700;
}
`)
await waitForOutputFileChange(/parcel\.\w+\.css$/, async () => {
await writeInputFile(
'index.css',
css`
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.btn {
@apply rounded px-2 py-1;
}
}
`
)
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
/* prettier-ignore */
.btn {
border-radius: .25rem;
padding: .25rem .5rem;
}
.font-bold {
font-weight: 700;
}
`)
await waitForOutputFileChange(/parcel\.\w+\.css$/, async () => {
await writeInputFile(
'index.css',
css`
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.btn {
@apply rounded bg-red-500 px-2 py-1;
}
}
`
)
})
expect(await readOutputFile(/parcel\.\w+\.css$/)).toIncludeCss(css`
.btn {
--tw-bg-opacity: 1;
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
border-radius: 0.25rem;
padding: 0.25rem 0.5rem;
}
.font-bold {
font-weight: 700;
}
`)
return runningProcess.stop()
})
})