Testing RedwoodJS
https://redwoodjs.com/docs/testing
by Rob Cameron
JavaScript
const add = (a, b) => {
return a + b
}
if (add(1, 1) === 2) {
document.write('pass')
} else {
document.write('fail')
}
by Rob Cameron
const add = (a, b) => {
return a + b
}
if (add(1, 1) === 2) {
document.write('pass')
} else {
document.write('fail')
}