-
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tests for experimentalParseClassName
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { extendTailwindMerge } from '../src' | ||
|
||
test('default case', () => { | ||
const twMerge = extendTailwindMerge({ | ||
experimentalParseClassName({ className, parseClassName }) { | ||
return parseClassName(className) | ||
}, | ||
}) | ||
|
||
expect(twMerge('px-2 py-1 p-3')).toBe('p-3') | ||
}) | ||
|
||
test('removing first three characters from class', () => { | ||
const twMerge = extendTailwindMerge({ | ||
experimentalParseClassName({ className, parseClassName }) { | ||
return parseClassName(className.slice(3)) | ||
}, | ||
}) | ||
|
||
expect(twMerge('barpx-2 foopy-1 lolp-3')).toBe('lolp-3') | ||
}) | ||
|
||
test('ignoring breakpoint modifiers', () => { | ||
const breakpoints = new Set(['sm', 'md', 'lg', 'xl', '2xl']) | ||
const twMerge = extendTailwindMerge({ | ||
experimentalParseClassName({ className, parseClassName }) { | ||
const parsed = parseClassName(className) | ||
|
||
return { | ||
...parsed, | ||
modifiers: parsed.modifiers.filter((modifier) => !breakpoints.has(modifier)), | ||
} | ||
}, | ||
}) | ||
|
||
expect(twMerge('md:px-2 hover:py-4 py-1 lg:p-3')).toBe('hover:py-4 lg:p-3') | ||
}) |