Front end of the Slack clone application.

test.js 224B

12345678
  1. const request = require('./lib/node');
  2. request.post('nevermind')
  3. .field({a:1,b:2})
  4. .attach('c', 'does-not-exist.txt')
  5. .then(() => assert.fail("It should not allow this"))
  6. .catch(() => true);