As I understand it, in order for the variables assigned to within a jasmine beforeEach to be accessible by the specs it applies to, the variables have to be declared in the containing block. I'm trying to find the least verbose way of doing this using coffeescript and came up with:
[var1, var2, var3, ..., varn] = [undefined]
Is there a better way?