We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 785a924 + 80b465c commit aa26525Copy full SHA for aa26525
test/test.js
@@ -14,6 +14,10 @@ describe('MyLib', function() {
14
assert.equal(typeof(myLib.test), 'object');
15
});
16
17
+ it('should have a property called run that is a function', function() {
18
+ assert.equal(typeof(myLib.run), 'function');
19
+ });
20
+
21
describe('assert', function() {
22
it('should have a property called equal that is a function', function() {
23
assert.equal(typeof(myLib.assert.equal), 'function');
0 commit comments