mirror of
https://github.com/maxswa/osrs-json-hiscores.git
synced 2025-10-15 10:19:04 +00:00
8 lines
224 B
JavaScript
8 lines
224 B
JavaScript
const request = require('./lib/node');
|
|
|
|
request.post('nevermind')
|
|
.field({a:1,b:2})
|
|
.attach('c', 'does-not-exist.txt')
|
|
.then(() => assert.fail("It should not allow this"))
|
|
.catch(() => true);
|