Skip to content

Commit d69c303

Browse files
test: interpolateName util (#138)
1 parent f8a71f4 commit d69c303

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

test/interpolateName.test.js

+18
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,24 @@ describe('interpolateName()', () => {
106106
'test content',
107107
'modal__modalTitle___1eeb',
108108
],
109+
[
110+
'/lib/components/modal/modal.css',
111+
'[name]__modalTitle___[sha1:contenthash:hex:4]',
112+
'test content',
113+
'modal__modalTitle___1eeb',
114+
],
115+
[
116+
'/lib/components/modal/modal.css',
117+
'[name].[md5:hash:base64:20].[ext]',
118+
'test content',
119+
'modal.1n8osQznuT8jOAwdzg_n.css',
120+
],
121+
[
122+
'/lib/components/modal/modal.css',
123+
'[name].[md5:contenthash:base64:20].[ext]',
124+
'test content',
125+
'modal.1n8osQznuT8jOAwdzg_n.css',
126+
],
109127
].forEach((test) => {
110128
it('should interpolate ' + test[0] + ' ' + test[1], () => {
111129
const interpolatedName = loaderUtils.interpolateName(

0 commit comments

Comments
 (0)