Lines Matching refs:value
6 // Validate the result of calling with no previous value argument.
9 // Validate the result of calling with a previous value argument.
35 // Ensure that an invalid shape for the previous value argument throws an error.
51 ].forEach((value) => {
53 () => process.cpuUsage(value),
58 common.invalidArgTypeHelper(value.user)
66 ].forEach((value) => {
68 () => process.cpuUsage(value),
73 common.invalidArgTypeHelper(value.system)
82 ].forEach((value) => {
84 () => process.cpuUsage(value),
89 `Received ${value.user}`,
97 ].forEach((value) => {
99 () => process.cpuUsage(value),
104 `Received ${value.system}`,
109 // Ensure that the return value is the expected shape.