Skip to content

Commit 379490f

Browse files
clarkdoeddyerburgh
authored andcommitted
fix: add missing argument in getCacheKey (#153)
1 parent 5c3842a commit 379490f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ module.exports = {
88
fileData,
99
filename,
1010
configString,
11-
{ instrument, rootDir }
11+
{ config, instrument, rootDir }
1212
) {
1313
return crypto
1414
.createHash('md5')
1515
.update(
1616
babelJest.getCacheKey(fileData, filename, configString, {
17+
config,
1718
instrument,
1819
rootDir
1920
}),

0 commit comments

Comments
 (0)