8 lines
90 B
JavaScript
8 lines
90 B
JavaScript
expect(do {
|
|
if (false) {
|
|
"foo";
|
|
} else if (true) {
|
|
"bar";
|
|
}
|
|
}).toBe("bar");
|