Skip to content

Commit aa26525

Browse files
authored
Merge pull request bhoop77#1 from thoop/master
added a new test
2 parents 785a924 + 80b465c commit aa26525

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ describe('MyLib', function() {
1414
assert.equal(typeof(myLib.test), 'object');
1515
});
1616

17+
it('should have a property called run that is a function', function() {
18+
assert.equal(typeof(myLib.run), 'function');
19+
});
20+
1721
describe('assert', function() {
1822
it('should have a property called equal that is a function', function() {
1923
assert.equal(typeof(myLib.assert.equal), 'function');

0 commit comments

Comments
 (0)