fix test error

This commit is contained in:
Dave Horton
2022-02-21 15:06:05 -05:00
parent a6731c890d
commit 138d1adb8d
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
const assert = require('assert');
const Websocket = require('ws');
const {WebhookResponse} = require('@jambonz/node-client');
const {WebhookResponse} = require('./webhook-response');
module.exports = (ws, {logger, req}) => {
assert(ws instanceof Websocket);

View File

@@ -1,7 +1,7 @@
{
"name": "@jambonz/node-client",
"version": "0.3.0",
"description": "",
"version": "0.3.1",
"description": "Node.js client for building jambonz applications (jambonz.org)",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test node test/ ",