tailwindcss/tests/negative-prefix.test.js
Robin Malfait a4f1ff9052
Improve CSS output in tests to better reflect reality (#10454)
* drop empty lines when diffing output

* replace expected css with optimized lightningcss output

Lightning CSS generates a more optimal CSS output.

Right now the tests are setup in a way that both the generated css and
expected css are run through `lightningcss` to make sure that the output
is concistent for the `stable` and `oxide` engines. But this also means
that the expected output _could_ be larger (aka not optimized) and still
matches (after it runs through lightningcss).

By replacing this with the more optimal output we achieve a few things:

1. This better reflects reality since we will be using `lightningcss`.
2. This gets rid of unnecessary css.
3. Removed code!
2023-01-31 15:37:49 +01:00

347 lines
7.6 KiB
JavaScript

import { crosscheck, run, html, css } from './util/run'
crosscheck(() => {
test('using a negative prefix with a negative scale value', () => {
let config = {
content: [{ raw: html`<div class="mt-2 -mt-2"></div>` }],
theme: {
margin: {
2: '8px',
'-2': '-4px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-2 {
margin-top: -4px;
}
.mt-2 {
margin-top: 8px;
}
`)
})
})
test('using a negative scale value with a plugin that does not support dynamic negative values', () => {
let config = {
content: [{ raw: html`<div class="-opacity-50"></div>` }],
theme: {
opacity: {
'-50': '0.5',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-opacity-50 {
opacity: 0.5;
}
`)
})
})
test('using a negative prefix without a negative scale value', () => {
let config = {
content: [{ raw: html`<div class="mt-5 -mt-5"></div>` }],
theme: {
margin: {
5: '20px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-5 {
margin-top: -20px;
}
.mt-5 {
margin-top: 20px;
}
`)
})
})
test('being an asshole', () => {
let config = {
content: [{ raw: html`<div class="-mt-[10px]"></div>` }],
theme: {
margin: {
'-[10px]': '55px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-\[10px\] {
margin-top: 55px;
}
`)
})
})
test('being a real asshole', () => {
let config = {
content: [{ raw: html`<div class="-mt-[10px]"></div>` }],
theme: {
margin: {
'[10px]': '55px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-\[10px\] {
margin-top: -55px;
}
`)
})
})
test('a value that includes a variable', () => {
let config = {
content: [{ raw: html`<div class="mt-5 -mt-5"></div>` }],
theme: {
margin: {
5: 'var(--sizing-5)',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-5 {
margin-top: calc(var(--sizing-5) * -1);
}
.mt-5 {
margin-top: var(--sizing-5);
}
`)
})
})
test('a value that includes a calc', () => {
let config = {
content: [{ raw: html`<div class="mt-5 -mt-5"></div>` }],
theme: {
margin: {
5: 'calc(52px * -3)',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-5 {
margin-top: 156px;
}
.mt-5 {
margin-top: -156px;
}
`)
})
})
test('a value that includes min/max/clamp functions', () => {
let config = {
content: [
{ raw: html`<div class="mt-min -mt-min mt-max -mt-max mt-clamp -mt-clamp"></div>` },
],
theme: {
margin: {
min: 'min(100vmin, 3rem)',
max: 'max(100vmax, 3rem)',
clamp: 'clamp(1rem, 100vh, 3rem)',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-clamp {
margin-top: calc(-1 * clamp(1rem, 100vh, 3rem));
}
.-mt-max {
margin-top: calc(-1 * max(100vmax, 3rem));
}
.-mt-min {
margin-top: calc(-1 * min(100vmin, 3rem));
}
.mt-clamp {
margin-top: clamp(1rem, 100vh, 3rem);
}
.mt-max {
margin-top: max(100vmax, 3rem);
}
.mt-min {
margin-top: min(100vmin, 3rem);
}
`)
})
})
test('a keyword value', () => {
let config = {
content: [{ raw: html`<div class="-mt-auto mt-auto"></div>` }],
theme: {
margin: {
auto: 'auto',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.mt-auto {
margin-top: auto;
}
`)
})
})
test('a zero value', () => {
let config = {
content: [{ raw: html`<div class="mt-0 -mt-0"></div>` }],
theme: {
margin: {
0: '0',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-0,
.mt-0 {
margin-top: 0;
}
`)
})
})
test('a color', () => {
let config = {
content: [{ raw: html`<div class="-bg-red"></div>` }],
theme: {
colors: {
red: 'red',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css``)
})
})
test('arbitrary values', () => {
let config = {
content: [{ raw: html`<div class="-mt-[10px]"></div>` }],
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-\[10px\] {
margin-top: -10px;
}
`)
})
})
test('negating a negative scale value', () => {
let config = {
content: [{ raw: html`<div class="-mt-weird"></div>` }],
theme: {
margin: {
weird: '-15px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt-weird {
margin-top: 15px;
}
`)
})
})
test('negating a default value', () => {
let config = {
content: [{ raw: html`<div class="-mt"></div>` }],
theme: {
margin: {
DEFAULT: '15px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt {
margin-top: -15px;
}
`)
})
})
test('using a negative prefix with a negative default scale value', () => {
let config = {
content: [{ raw: html`<div class="mt -mt"></div>` }],
theme: {
margin: {
DEFAULT: '8px',
'-DEFAULT': '-4px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.-mt {
margin-top: -4px;
}
.mt {
margin-top: 8px;
}
`)
})
})
test('negating a default value with a configured prefix', () => {
let config = {
prefix: 'tw-',
content: [{ raw: html`<div class="tw--mt"></div>` }],
theme: {
margin: {
DEFAULT: '15px',
},
},
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css`
.tw--mt {
margin-top: -15px;
}
`)
})
})
test('arbitrary value keywords should be ignored', () => {
let config = {
content: [{ raw: html`<div class="-mt-[auto]"></div>` }],
}
return run('@tailwind utilities', config).then((result) => {
return expect(result.css).toMatchCss(css``)
})
})
})