Skip to content

Commit

Permalink
test client init
Browse files Browse the repository at this point in the history
  • Loading branch information
Stan Kirdey authored and Stan Kirdey committed Jan 7, 2018
1 parent 427eb19 commit fe80fc8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions test/test-commands-verge.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
exports.testClientInit = function(test) {
var client = require('../lib/verge');
test.notEqual(client, null, "client shall not be null");
test.done();
};
2 changes: 1 addition & 1 deletion test/test-node-verge.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
exports.testSomething = function(test) {
exports.testExample = function(test) {
test.expect(1);
test.ok(true, "this assertion should pass");
test.done();
Expand Down

0 comments on commit fe80fc8

Please sign in to comment.