8 lines
81 B
JavaScript
8 lines
81 B
JavaScript
assert.equal(do {
|
|
if (false) {
|
|
"foo";
|
|
} else {
|
|
"bar";
|
|
}
|
|
}, "bar");
|