mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-12 19:26:13 +09:00
remove timer and simon
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
global.expect = require('chai').expect;
|
||||
var has = require('../src');
|
||||
|
||||
|
||||
describe('has', function() {
|
||||
it('works!', function() {
|
||||
expect(has({}, 'hasOwnProperty')).to.be.false;
|
||||
expect(has(Object.prototype, 'hasOwnProperty')).to.be.true;
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user