Skip to content

Commit e39c398

Browse files
author
Brad Cornes
committed
fix tests
1 parent 8f2ca0a commit e39c398

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

packages/tailwindcss-class-names/package-lock.json

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/tailwindcss-class-names/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"devDependencies": {
2828
"@zeit/ncc": "^0.21.1",
2929
"esm": "^3.2.25",
30-
"jest": "^25.1.0"
30+
"jest": "^25.1.0",
31+
"postcss": "^7.0.27"
3132
}
3233
}

packages/tailwindcss-class-names/tests/extractClassNames.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ test('foo', async () => {
121121
})
122122
})
123123

124-
test.only('processes basic css', async () => {
124+
test('processes basic css', async () => {
125125
const result = await processCss(`
126-
.bg-red\\:foo {
126+
.bg-red {
127127
background-color: red;
128128
}
129129
`)

0 commit comments

Comments
 (0)