elijahdorman

Results 3 issues of elijahdorman

```javascript test.beforeEach(t => { t.context.fn = () => 'foo'; }); test('will execute foo', t => { t.is(t.context.fn(), 'foo'); }); ``` The `t.is` will be modified, but the t.context will be...

bug
help wanted
good first issue

Is there a built-in option or do I need to roll my own?

A fat arrow function binds to the local execution context differently. Execute the following in FF: ``` var __slice = Array.prototype.slice; var extendWithFunc = function (fn, obj) { return fn.apply(obj,...