2018-03-24 16:22:20 +05:30

10 lines
102 B
JavaScript

function f() {
const a = "foo";
if (false) a = "false";
return a;
}
expect(f()).toBe("foo");