-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbrowser.test.js
38 lines (32 loc) · 1.2 KB
/
browser.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
const postCss = require('postcss');
const postCssTailwind = require('tailwindcss');
const postCssAutoprefixer = require('autoprefixer');
const cssToTailwind = require('./browser');
test('browser version works', async () => {
const { css: tailwindCss } = await postCss([
postCssTailwind,
postCssAutoprefixer,
]).process('@tailwind base;\n\n@tailwind components;\n\n@tailwind utilities;', { from: 'tailwind.css' });
const inputCss = `
.foo {
padding: 1.6rem;
}
.foo:hover {
background: transparent;
}`;
const result = await cssToTailwind(inputCss, tailwindCss);
expect(result).toMatchInlineSnapshot(`
Array [
Object {
"missing": Object {},
"selector": ".foo",
"tailwind": "p-6 hover:bg-transparent",
},
]
`);
});
test('browser version throws when tailwind.css is not provided', async () => {
await expect(cssToTailwind('')).rejects.toThrowErrorMatchingInlineSnapshot(
`"You are using the browser package, but did not provide the \`tailwind.css\` content. Browser use-cases are reponsible to build \`tailwind.css\` themselves."`,
);
});