You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Invalid value type provided for option '${key}', expected ${
75
-
acceptedOptions[key].type
76
-
} but received ${typeofoptions[key]}`
77
+
acceptedOption.type
78
+
} but received ${typeofoption}`
77
79
);
78
80
}
79
81
80
82
/* istanbul ignore next: unable to test due to https://github.com/jestjs/jest/pull/14297 */
81
-
if(lt(version,acceptedOptions[key].minVersion)){
83
+
if(lt(version,acceptedOption.minVersion)){
82
84
invalidArgs.push(
83
-
`Invalid option provided for the current version of the binary used. '${key}' was introduced in v${acceptedOptions[key].minVersion}, but received v${version}`
85
+
`Invalid option provided for the current version of the binary used. '${key}' was introduced in v${acceptedOption.minVersion}, but received v${version}`
84
86
);
85
87
}
86
88
87
89
/* istanbul ignore next: unable to test due to https://github.com/jestjs/jest/pull/14297 */
`Invalid option provided for the current version of the binary used. '${key}' is only present up to v${acceptedOptions[key].maxVersion}, but received v${version}`
92
+
`Invalid option provided for the current version of the binary used. '${key}' is only present up to v${acceptedOption.maxVersion}, but received v${version}`
0 commit comments