forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind-screens.test.js
63 lines (57 loc) · 1.3 KB
/
tailwind-screens.test.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { run, html, css } from './util/run'
test('class variants are inserted at `@tailwind variants`', async () => {
let config = {
content: [{ raw: html`<div class="font-bold hover:font-bold md:font-bold"></div>` }],
}
let input = css`
@tailwind utilities;
@tailwind variants;
.foo {
color: black;
}
`
return run(input, config).then((result) => {
expect(result.css).toMatchFormattedCss(css`
.font-bold,
.hover\:font-bold:hover {
font-weight: 700;
}
@media (min-width: 768px) {
.md\:font-bold {
font-weight: 700;
}
}
.foo {
color: #000;
}
`)
})
})
test('`@tailwind screens` works as an alias for `@tailwind variants`', async () => {
let config = {
content: [{ raw: html`<div class="font-bold hover:font-bold md:font-bold"></div>` }],
}
let input = css`
@tailwind utilities;
@tailwind screens;
.foo {
color: black;
}
`
return run(input, config).then((result) => {
expect(result.css).toMatchFormattedCss(css`
.font-bold,
.hover\:font-bold:hover {
font-weight: 700;
}
@media (min-width: 768px) {
.md\:font-bold {
font-weight: 700;
}
}
.foo {
color: #000;
}
`)
})
})