From f9159ea2d994e14180fb02ab562f0119513e67cf Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Fri, 3 Apr 2020 02:48:28 -0700 Subject: 2020/04/03, 02:47, V1.2.2 --- node_modules/http-response-object/test/index.js | 37 ------------------------- 1 file changed, 37 deletions(-) delete mode 100644 node_modules/http-response-object/test/index.js (limited to 'node_modules/http-response-object/test') diff --git a/node_modules/http-response-object/test/index.js b/node_modules/http-response-object/test/index.js deleted file mode 100644 index 0ff4e16..0000000 --- a/node_modules/http-response-object/test/index.js +++ /dev/null @@ -1,37 +0,0 @@ -'use strict'; - -var assert = require('assert'); -var Response = require('../'); - -var res = new Response(200, { - 'Foo-Bar': 'baz-Bosh', - 'bar-foo': 'bish-Bosh' -}, 'foo bar baz', 'http://example.com'); -assert(res.statusCode = 200); -assert(res.headers['foo-bar'] === 'baz-Bosh'); -assert(res.headers['bar-foo'] === 'bish-Bosh'); -assert(res.body === 'foo bar baz'); -assert(res.url === 'http://example.com'); -assert(res.getBody() === 'foo bar baz'); - -res = new Response(404, { - 'Foo-Bar': 'baz-Bosh' -}, 'Could not find page', 'http://example.com'); -assert(res.statusCode = 404); -assert(res.headers['foo-bar'] === 'baz-Bosh'); -assert(res.body === 'Could not find page'); -assert(res.url === 'http://example.com'); -var errored = false; -try { - res.getBody(); -} catch (ex) { - assert(ex.statusCode === 404); - assert(ex.headers['foo-bar'] === 'baz-Bosh'); - assert(ex.body === 'Could not find page'); - assert(ex.url === 'http://example.com'); - errored = true; -} -if (!errored) { - throw new Error('res.getBody() should throw an error when the status code is 404'); -} -console.log('tests passed'); -- cgit v1.2.3