Refactor parameter serialization into TaskParameterSerializer

pull/310/head
Frostebite 2021-12-23 19:23:15 +00:00
parent f0dbb459ff
commit 62ec805919
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ describe('Cloud Runner', () => {
const inputKeys = Object.getOwnPropertyNames(Input); const inputKeys = Object.getOwnPropertyNames(Input);
for (const element of inputKeys) { for (const element of inputKeys) {
if (Input[element] !== undefined && typeof Input[element] != 'function') { if (Input[element] !== undefined && typeof Input[element] != 'function') {
expect(file).toContain(`${element}=${Input[element]}`); expect(file.replace(`\n`, ``)).toContain(`${element}=${Input[element].replace(`\n`, ``)}`);
} }
} }
} }