mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
165 lines
4.6 KiB
JavaScript
165 lines
4.6 KiB
JavaScript
import { normalizeConfig } from '../src/util/normalizeConfig'
|
|
import resolveConfig from '../src/public/resolve-config'
|
|
import { crosscheck, run, css } from './util/run'
|
|
|
|
crosscheck(({ stable, oxide }) => {
|
|
it.each`
|
|
config
|
|
${{ purge: [{ raw: 'text-center' }] }}
|
|
${{ purge: { content: [{ raw: 'text-center' }] } }}
|
|
${{ content: { content: [{ raw: 'text-center' }] } }}
|
|
`('should normalize content $config', ({ config }) => {
|
|
return run('@tailwind utilities', config).then((result) => {
|
|
return expect(result.css).toMatchFormattedCss(css`
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
it.each`
|
|
config
|
|
${{ purge: { safelist: ['text-center'] } }}
|
|
${{ purge: { options: { safelist: ['text-center'] } } }}
|
|
${{ content: { safelist: ['text-center'] } }}
|
|
`('should normalize safelist $config', ({ config }) => {
|
|
return run('@tailwind utilities', config).then((result) => {
|
|
return expect(result.css).toMatchFormattedCss(css`
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
oxide.test.todo('should normalize extractors')
|
|
stable.test.each`
|
|
config
|
|
${{ content: [{ raw: 'text-center' }], purge: { extract: () => ['font-bold'] } }}
|
|
${{ content: [{ raw: 'text-center' }], purge: { extract: { DEFAULT: () => ['font-bold'] } } }}
|
|
${{
|
|
content: [{ raw: 'text-center' }],
|
|
purge: { options: { defaultExtractor: () => ['font-bold'] } },
|
|
}}
|
|
${{
|
|
content: [{ raw: 'text-center' }],
|
|
purge: {
|
|
options: { extractors: [{ extractor: () => ['font-bold'], extensions: ['html'] }] },
|
|
},
|
|
}}
|
|
${{ content: [{ raw: 'text-center' }], purge: { extract: { html: () => ['font-bold'] } } }}
|
|
`('should normalize extractors $config', ({ config }) => {
|
|
return run('@tailwind utilities', config).then((result) => {
|
|
return expect(result.css).toMatchFormattedCss(css`
|
|
.font-bold {
|
|
font-weight: 700;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
oxide.test.todo('should still be possible to use the "old" v2 config')
|
|
stable.test('should still be possible to use the "old" v2 config', () => {
|
|
let config = {
|
|
purge: {
|
|
content: [
|
|
{ raw: 'text-svelte', extension: 'svelte' },
|
|
{ raw: '# My Big Heading', extension: 'md' },
|
|
],
|
|
options: {
|
|
defaultExtractor(content) {
|
|
return content.split(' ').concat(['font-bold'])
|
|
},
|
|
},
|
|
extract: {
|
|
svelte(content) {
|
|
return content.replace('svelte', 'center').split(' ')
|
|
},
|
|
},
|
|
transform: {
|
|
md() {
|
|
return 'text-4xl'
|
|
},
|
|
},
|
|
},
|
|
theme: {
|
|
extends: {},
|
|
},
|
|
variants: {
|
|
extends: {},
|
|
},
|
|
}
|
|
|
|
return run('@tailwind utilities', config).then((result) => {
|
|
return expect(result.css).toMatchFormattedCss(css`
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
.text-4xl {
|
|
font-size: 2.25rem;
|
|
line-height: 2.5rem;
|
|
}
|
|
.font-bold {
|
|
font-weight: 700;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
it('should keep content files with globs', () => {
|
|
let config = {
|
|
content: ['./example-folder/**/*.{html,js}'],
|
|
}
|
|
|
|
stable.expect(normalizeConfig(resolveConfig(config)).content).toEqual({
|
|
files: ['./example-folder/**/*.{html,js}'],
|
|
relative: false,
|
|
extract: {},
|
|
transform: {},
|
|
})
|
|
oxide.expect(normalizeConfig(resolveConfig(config)).content).toEqual({
|
|
files: ['./example-folder/**/*.{html,js}'],
|
|
relative: true,
|
|
extract: {},
|
|
transform: {},
|
|
})
|
|
})
|
|
|
|
it('should warn when we detect invalid globs with incorrect brace expansion', () => {
|
|
let config = {
|
|
content: [
|
|
'./{example-folder}/**/*.{html,js}',
|
|
'./{example-folder}/**/*.{html}',
|
|
'./example-folder/**/*.{html}',
|
|
],
|
|
}
|
|
|
|
let normalizedConfig = normalizeConfig(resolveConfig(config)).content
|
|
|
|
// No rewrite happens
|
|
stable.expect(normalizedConfig).toEqual({
|
|
files: [
|
|
'./{example-folder}/**/*.{html,js}',
|
|
'./{example-folder}/**/*.{html}',
|
|
'./example-folder/**/*.{html}',
|
|
],
|
|
relative: false,
|
|
extract: {},
|
|
transform: {},
|
|
})
|
|
oxide.expect(normalizedConfig).toEqual({
|
|
files: [
|
|
'./{example-folder}/**/*.{html,js}',
|
|
'./{example-folder}/**/*.{html}',
|
|
'./example-folder/**/*.{html}',
|
|
],
|
|
relative: true,
|
|
extract: {},
|
|
transform: {},
|
|
})
|
|
|
|
expect().toHaveBeenWarnedWith(['invalid-glob-braces'])
|
|
})
|
|
})
|