Files
UoL/CM2010 Software Design and Development/Topic 2/8.3.1/node_modules/superagent/test.js
2021-06-16 19:39:43 -05:00

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);