Skip to content

Commit

Permalink
Add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephendade committed Dec 7, 2020
1 parent 3398bcc commit 1a76528
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions server/networkClients.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
var assert = require('assert')
var appRoot = require('app-root-path')
const networkClients = require('./networkClients')

describe('Network Client Functions', function () {
it('#networkclientgetClients()', function (done) {
// Getting a list of clients
networkClients.getClients((err, apnamev, apclientsv) => {
assert.equal(err, null)
done()
})
})
})

0 comments on commit 1a76528

Please sign in to comment.