If a block is created by begin/end to force a scope... ```ruby begin test = 2 end ``` it should generate a JS block as well ```js { let test = 2; } ``` The JS block is not being added.