mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* Run test suite against both engines * make eslint happy * only run `stable` tests on Node 12 * use normal expectation instead of snapshot file When we run the tests only against `stable` (for node 12), then the snapshots exists for the `Oxide` build. They are marked as `obsolete` and will cause the `npm run test` script to fail. Sadly. Inlined them for now, but ideally we make those tests more blackbox-y so that we test that we get source maps and that we can map the sourcemap back to the input files (without looking at the actual annotations). * properly indent inline css Co-authored-by: Adam Wathan <4323180+adamwathan@users.noreply.github.com> Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
131 lines
3.2 KiB
JavaScript
131 lines
3.2 KiB
JavaScript
import { crosscheck, run, html, css } from './util/run'
|
|
|
|
crosscheck(() => {
|
|
it('should warn when we detect nested css', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="nested"></div>` }],
|
|
}
|
|
|
|
let input = css`
|
|
@tailwind utilities;
|
|
|
|
.nested {
|
|
.example {
|
|
}
|
|
}
|
|
`
|
|
|
|
return run(input, config).then((result) => {
|
|
expect(result.messages).toHaveLength(1)
|
|
expect(result.messages).toMatchObject([
|
|
{
|
|
type: 'warning',
|
|
text: [
|
|
'Nested CSS was detected, but CSS nesting has not been configured correctly.',
|
|
'Please enable a CSS nesting plugin *before* Tailwind in your configuration.',
|
|
'See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting',
|
|
].join('\n'),
|
|
},
|
|
])
|
|
})
|
|
})
|
|
|
|
it('should not warn when we detect nested css inside css @layer rules', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="underline"></div>` }],
|
|
}
|
|
|
|
let input = css`
|
|
@layer tw-base, tw-components, tw-utilities;
|
|
@layer tw-utilities {
|
|
@tailwind utilities;
|
|
}
|
|
`
|
|
|
|
return run(input, config).then((result) => {
|
|
expect(result.css).toMatchFormattedCss(css`
|
|
@layer tw-base, tw-components, tw-utilities;
|
|
@layer tw-utilities {
|
|
.underline {
|
|
text-decoration-line: underline;
|
|
}
|
|
}
|
|
`)
|
|
expect(result.messages).toHaveLength(0)
|
|
})
|
|
})
|
|
|
|
it('should warn when we detect namespaced @tailwind at rules', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="text-center"></div>` }],
|
|
}
|
|
|
|
let input = css`
|
|
.namespace {
|
|
@tailwind utilities;
|
|
}
|
|
`
|
|
|
|
return run(input, config).then((result) => {
|
|
expect(result.messages).toHaveLength(1)
|
|
expect(result.messages).toMatchObject([
|
|
{
|
|
type: 'warning',
|
|
text: [
|
|
'Nested @tailwind rules were detected, but are not supported.',
|
|
"Consider using a prefix to scope Tailwind's classes: https://tailwindcss.com/docs/configuration#prefix",
|
|
'Alternatively, use the important selector strategy: https://tailwindcss.com/docs/configuration#selector-strategy',
|
|
].join('\n'),
|
|
},
|
|
])
|
|
})
|
|
})
|
|
|
|
it('should not warn when nesting a single rule inside a media query', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="nested"></div>` }],
|
|
}
|
|
|
|
let input = css`
|
|
@tailwind utilities;
|
|
|
|
@media (min-width: 768px) {
|
|
.nested {
|
|
}
|
|
}
|
|
`
|
|
|
|
return run(input, config).then((result) => {
|
|
expect(result.messages).toHaveLength(0)
|
|
expect(result.messages).toEqual([])
|
|
})
|
|
})
|
|
|
|
it('should only warn for the first detected nesting ', () => {
|
|
let config = {
|
|
content: [{ raw: html`<div class="nested other"></div>` }],
|
|
}
|
|
|
|
let input = css`
|
|
@tailwind utilities;
|
|
|
|
.nested {
|
|
.example {
|
|
}
|
|
|
|
.other {
|
|
}
|
|
}
|
|
|
|
.other {
|
|
.example {
|
|
}
|
|
}
|
|
`
|
|
|
|
return run(input, config).then((result) => {
|
|
expect(result.messages).toHaveLength(1)
|
|
})
|
|
})
|
|
})
|