Skip to content

Commit 12ba0c8

Browse files
committed
Changed important (string) to important (selector)
1 parent 3820757 commit 12ba0c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

__tests__/applyAtRule.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ test('you can apply utility classes without using the given prefix when using a
243243
})
244244
})
245245

246-
test('you can apply utility classes without specificity prefix even if important (string) is used.', () => {
246+
test('you can apply utility classes without specificity prefix even if important (selector) is used.', () => {
247247
const input = `
248248
.foo { @apply .mt-8 .mb-8; }
249249
`

__tests__/processPlugins.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ test('plugins respect prefix and important options by default when adding utilit
877877
`)
878878
})
879879

880-
test('plugins respect prefix and important (string) options by default when adding utilities', () => {
880+
test('plugins respect prefix and important (selector) options by default when adding utilities', () => {
881881
const { utilities } = processPlugins(
882882
[
883883
function({ addUtilities }) {

__tests__/resolveConfig.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ test('important key overrides default important', () => {
8080
})
8181
})
8282

83-
test('important (string) key overrides default important', () => {
83+
test('important (selector) key overrides default important', () => {
8484
const userConfig = {
8585
important: '#app',
8686
}

0 commit comments

Comments
 (0)