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>
320 lines
6.4 KiB
JavaScript
320 lines
6.4 KiB
JavaScript
import parseObjectStyles from '../src/util/parseObjectStyles'
|
|
import postcss from 'postcss'
|
|
import { crosscheck, css } from './util/run'
|
|
|
|
function toCss(nodes) {
|
|
return postcss.root({ nodes }).toString()
|
|
}
|
|
|
|
crosscheck(() => {
|
|
test('it parses simple single class definitions', () => {
|
|
const result = parseObjectStyles({
|
|
'.foobar': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foobar {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses multiple class definitions', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
},
|
|
'.bar': {
|
|
width: '200px',
|
|
height: '100px',
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
.bar {
|
|
width: 200px;
|
|
height: 100px;
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses nested pseudo-selectors', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
'&:hover': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
'&:focus': {
|
|
backgroundColor: 'blue',
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
.foo:hover {
|
|
background-color: orange;
|
|
}
|
|
.foo:focus {
|
|
background-color: blue;
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses top-level media queries', () => {
|
|
const result = parseObjectStyles({
|
|
'@media (min-width: 200px)': {
|
|
'.foo': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
@media (min-width: 200px) {
|
|
.foo {
|
|
background-color: orange;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses nested media queries', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
'@media (min-width: 200px)': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
@media (min-width: 200px) {
|
|
.foo {
|
|
background-color: orange;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it bubbles nested screen rules', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
'@screen sm': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
@screen sm {
|
|
.foo {
|
|
background-color: orange;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses pseudo-selectors in nested media queries', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
'&:hover': {
|
|
'@media (min-width: 200px)': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
@media (min-width: 200px) {
|
|
.foo:hover {
|
|
background-color: orange;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses descendant selectors', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
'.bar': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
.foo .bar {
|
|
background-color: orange;
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses nested multi-class selectors', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
'&.bar': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
.foo.bar {
|
|
background-color: orange;
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it parses nested multi-class selectors in media queries', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
backgroundColor: 'red',
|
|
color: 'white',
|
|
padding: '1rem',
|
|
'@media (min-width: 200px)': {
|
|
'&.bar': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: red;
|
|
color: white;
|
|
padding: 1rem;
|
|
}
|
|
@media (min-width: 200px) {
|
|
.foo.bar {
|
|
background-color: orange;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it strips empty selectors when nesting', () => {
|
|
const result = parseObjectStyles({
|
|
'.foo': {
|
|
'.bar': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo .bar {
|
|
background-color: orange;
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('it can parse an array of styles', () => {
|
|
const result = parseObjectStyles([
|
|
{
|
|
'.foo': {
|
|
backgroundColor: 'orange',
|
|
},
|
|
},
|
|
{
|
|
'.bar': {
|
|
backgroundColor: 'red',
|
|
},
|
|
},
|
|
{
|
|
'.foo': {
|
|
backgroundColor: 'blue',
|
|
},
|
|
},
|
|
])
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
.foo {
|
|
background-color: orange;
|
|
}
|
|
.bar {
|
|
background-color: red;
|
|
}
|
|
.foo {
|
|
background-color: blue;
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('custom properties preserve their case', () => {
|
|
const result = parseObjectStyles({
|
|
':root': {
|
|
'--colors-aColor-500': '0',
|
|
},
|
|
})
|
|
|
|
expect(toCss(result)).toMatchFormattedCss(css`
|
|
:root {
|
|
--colors-aColor-500: 0;
|
|
}
|
|
`)
|
|
})
|
|
})
|