UNPKG

jssip

Version:

the Javascript SIP library

21 lines (15 loc) 315 B
require('./include/common'); const JsSIP = require('../'); const pkg = require('../package.json'); module.exports = { 'name' : function(test) { test.equal(JsSIP.name, pkg.title); test.done(); }, 'version' : function(test) { test.equal(JsSIP.version, pkg.version); test.done(); } };