Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
dryajov authored and jacobheun committed Jan 3, 2019
1 parent d4efb4d commit 9374578
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"coverage-publish": "aegir coverage -u"
},
"author": "",
"license": "ISC",
"license": "MIT",
"dependencies": {
"chai-checkmark": "^1.0.1",
"dgram": "^1.0.1",
Expand Down
4 changes: 2 additions & 2 deletions test/pmp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
})
4 changes: 2 additions & 2 deletions test/upnp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
})

0 comments on commit 9374578

Please sign in to comment.