Remove the backslash escaping from JavaScript challenge output (e.g. \")
This commit is contained in:
@ -110,6 +110,7 @@ function bonfireExecute() {
|
|||||||
runTests('Error', null);
|
runTests('Error', null);
|
||||||
} else {
|
} else {
|
||||||
codeOutput.setValue(message.output);
|
codeOutput.setValue(message.output);
|
||||||
|
codeOutput.setValue(codeOutput.getValue().replace(/\\\"/gi,''));
|
||||||
message.input = removeLogs(message.input);
|
message.input = removeLogs(message.input);
|
||||||
runTests(null, message);
|
runTests(null, message);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user