v1
1/17/2019 by itaisteinherz -00
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



const json = `{"number": "1234567"}`;

const jsonObj = JSON.parse(json);
jsonObj.number = `${jsonObj.number}000`;

console.log(JSON.stringify(jsonObj));
delete caserun single casemove updrag and drop case


ready



const json = `{"number": "1234567"}`;

const updatedJson = json.replace(/"number":\s?"(\d+)"/, (_, num) => `"number": "${num}000"`);

console.log(json);
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN