Skip to content

Commit 43e9891

Browse files
committed
wip
1 parent f7635b0 commit 43e9891

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"coverage-publish": "aegir coverage -u"
1717
},
1818
"author": "",
19-
"license": "ISC",
19+
"license": "MIT",
2020
"dependencies": {
2121
"chai-checkmark": "^1.0.1",
2222
"dgram": "^1.0.1",

test/pmp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ describe('NAT-PMP tests', () => {
2626
natmapping = mapping
2727
done()
2828
})
29-
}).timeout(5 * 10000)
29+
})
3030

3131
it('should delete a mapping', (done) => {
3232
natPMP.deleteMapping(natmapping, (error) => {
3333
expect(error).to.not.exist()
3434
done()
3535
})
36-
}).timeout(5 * 10000)
36+
})
3737
})

test/upnp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ describe('Nat UpNP tests', () => {
2626
natmapping = mapping
2727
done()
2828
})
29-
}).timeout(5 * 10000)
29+
})
3030

3131
it('should delete a mapping', (done) => {
3232
natUpnp.deleteMapping(natmapping, (error) => {
3333
expect(error).to.not.exist()
3434
done()
3535
})
36-
}).timeout(5 * 10000)
36+
})
3737
})

0 commit comments

Comments
 (0)