Refactor parameter serialization into TaskParameterSerializer
parent
62ec805919
commit
2d54effec9
|
|
@ -32,7 +32,7 @@ describe('Cloud Runner', () => {
|
|||
const inputKeys = Object.getOwnPropertyNames(Input);
|
||||
for (const element of inputKeys) {
|
||||
if (Input[element] !== undefined && typeof Input[element] != 'function') {
|
||||
expect(file.replace(`\n`, ``)).toContain(`${element}=${Input[element].replace(`\n`, ``)}`);
|
||||
expect(file.replace(`\n`, ``)).toContain(`${element}=${Input[element].toString().replace(`\n`, ``)}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue