forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreflight.test.js
More file actions
25 lines (22 loc) · 752 Bytes
/
Copy pathpreflight.test.js
File metadata and controls
25 lines (22 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { crosscheck, run, html, css } from './util/run'
crosscheck(({ stable, oxide }) => {
it('preflight has a correct border color fallback', () => {
let config = {
content: [{ raw: html`<div class="border-black"></div>` }],
theme: {
borderColor: ({ theme }) => theme('colors'),
},
plugins: [],
corePlugins: { preflight: true },
}
let input = css`
@tailwind base;
@tailwind utilities;
`
return run(input, config).then((result) => {
stable.expect(result.css).toContain(`border-color: currentColor;`)
// Lightning CSS optimizes this to just `border-color: 0 solid;` based on the br value.
oxide.expect(result.css).toContain(`border: 0 solid;`)
})
})
})