Files
30-seconds-of-code/test/bindAll/bindAll.test.js
Angelos Chalaris 4f7da1be9b Test migration to jest by hand
Apparently using regular expressions is way easier.
2018-06-18 15:15:56 +03:00

18 lines
375 B
JavaScript

const expect = require('expect');
const bindAll = require('./bindAll.js');
test('bindAll is a Function', () => {
expect(bindAll).toBeInstanceOf(Function);
});
var view = {
label: 'docs',
'click': function() {
return 'clicked ' + this.label;
}
};
bindAll(view, 'click');
t.equal(view.click(), 'clicked docs', 'Binds to an object context');