From 9374578e23d5f8370d6ffa68de40f4c8cb2d3aa5 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Tue, 7 Aug 2018 21:47:03 -0600 Subject: [PATCH] wip --- package.json | 2 +- test/pmp.js | 4 ++-- test/upnp.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 16d7a95..36da577 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "coverage-publish": "aegir coverage -u" }, "author": "", - "license": "ISC", + "license": "MIT", "dependencies": { "chai-checkmark": "^1.0.1", "dgram": "^1.0.1", diff --git a/test/pmp.js b/test/pmp.js index ef084fb..938faa8 100644 --- a/test/pmp.js +++ b/test/pmp.js @@ -26,12 +26,12 @@ describe('NAT-PMP tests', () => { natmapping = mapping done() }) - }).timeout(5 * 10000) + }) it('should delete a mapping', (done) => { natPMP.deleteMapping(natmapping, (error) => { expect(error).to.not.exist() done() }) - }).timeout(5 * 10000) + }) }) diff --git a/test/upnp.js b/test/upnp.js index efc7b71..46331bc 100644 --- a/test/upnp.js +++ b/test/upnp.js @@ -26,12 +26,12 @@ describe('Nat UpNP tests', () => { natmapping = mapping done() }) - }).timeout(5 * 10000) + }) it('should delete a mapping', (done) => { natUpnp.deleteMapping(natmapping, (error) => { expect(error).to.not.exist() done() }) - }).timeout(5 * 10000) + }) })