File tree 2 files changed +3
-6
lines changed
packages/rspack-test-tools
tests/configCases/css/rspack-issue-6435
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 18
18
"dev" : " tsc -b -w" ,
19
19
"test" : " sh -c 'run-s \" test:* -- $*\" ' sh" ,
20
20
"testu" : " sh -c 'run-s \" test:* -- $*\" ' sh -u" ,
21
- "test:base" : " cross-env NODE_OPTIONS=--openssl-legacy-provider NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ../../node_modules/jest-cli/bin/jest --logHeapUsage --config ./jest.config.js --passWithNoTests" ,
21
+ "test:base" : " cross-env NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ../../node_modules/jest-cli/bin/jest --logHeapUsage --config ./jest.config.js --passWithNoTests" ,
22
22
"test:hot" : " cross-env RSPACK_HOT_TEST=true NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ../../node_modules/jest-cli/bin/jest --logHeapUsage --config ./jest.config.hot.js --passWithNoTests" ,
23
23
"test:diff" : " cross-env RSPACK_DIFF=true NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ../../node_modules/jest-cli/bin/jest --logHeapUsage --config ./jest.config.diff.js --passWithNoTests" ,
24
24
"api-extractor" : " api-extractor run --verbose" ,
Original file line number Diff line number Diff line change 1
1
import * as classes from "./style.module.css" ;
2
2
import legacyClasses from "./legacy/index.css" ;
3
3
4
- const crypto = require ( "crypto" ) ;
5
- const createHash = str => crypto . createHash ( 'md4' ) . update ( str ) . digest ( 'hex' ) . slice ( 0 , 20 ) . replace ( / ^ \d + / , "" ) ;
6
-
7
4
it ( "should have consistent hash" , ( ) => {
8
- expect ( classes [ "container-main" ] ) . toBe ( `${ createHash ( "./style.module.css" ) } -container-main` )
9
- expect ( legacyClasses [ "legacy-main" ] ) . toBe ( `${ createHash ( "./legacy/index.css" ) } -legacy-main` )
5
+ expect ( classes [ "container-main" ] ) . toBe ( `${ /* md4 ("./style.module.css") */ "ea850e6088d2566f677" } -container-main` )
6
+ expect ( legacyClasses [ "legacy-main" ] ) . toBe ( `${ /* md4 ("./legacy/index.css") */ "c15d43fe622e87bbf5d" } -legacy-main` )
10
7
} ) ;
You can’t perform that action at this time.
0 commit comments