Skip to content

Commit 47eff60

Browse files
committed
chore(build): fixed failing tests
1 parent 1854b8b commit 47eff60

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
1.10
2+
========
3+
Redeploy due to deployment issues
4+
15
1.09
26
========
37
Fixed deserialisation issue with asp web api when json content is formatted in batch request
48

5-
69
1.08
710
========
811
Fixed issue in IE11 that was stripping leading '/' on urls which in turned caused the routing in web api to fail.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-http-batcher",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "Angular (2+) HTTP batching module to reduce the number of HTTP requests and increase performance",
55
"scripts": {
66
"build": "./node_modules/.bin/ngc -p ./src",

tests/adapters/http-multipart-mixed-boundary-adapter.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ describe("HttpMultipartMixedBoundaryAdapter", () => {
3838
"GET /users HTTP/1.1",
3939
"Host: api.abc.com",
4040
"Accept: application/json, text/plain, */*",
41+
"Content-Type: text/plain",
4142
"",
4243
"",
4344
"--1494052623884--"
@@ -76,6 +77,7 @@ describe("HttpMultipartMixedBoundaryAdapter", () => {
7677
"Host: api.abc.com",
7778
"Accept: application/json, text/plain, */*",
7879
"Jon: Samwell",
80+
"Content-Type: text/plain",
7981
"",
8082
"",
8183
"--1494052623884--"
@@ -115,6 +117,7 @@ describe("HttpMultipartMixedBoundaryAdapter", () => {
115117
"Host: api.abc.com",
116118
"Accept: application/json, text/plain, */*",
117119
"content-disposition: something; name=unique0",
120+
"Content-Type: text/plain",
118121
"",
119122
"",
120123
"--1494052623884--"

0 commit comments

Comments
 (0)