Skip to content

Commit

Permalink
chore(build): fixed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsamwell committed Oct 31, 2017
1 parent 1854b8b commit 47eff60
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
1.10
========
Redeploy due to deployment issues

1.09
========
Fixed deserialisation issue with asp web api when json content is formatted in batch request


1.08
========
Fixed issue in IE11 that was stripping leading '/' on urls which in turned caused the routing in web api to fail.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-http-batcher",
"version": "1.0.9",
"version": "1.0.10",
"description": "Angular (2+) HTTP batching module to reduce the number of HTTP requests and increase performance",
"scripts": {
"build": "./node_modules/.bin/ngc -p ./src",
Expand Down
3 changes: 3 additions & 0 deletions tests/adapters/http-multipart-mixed-boundary-adapter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe("HttpMultipartMixedBoundaryAdapter", () => {
"GET /users HTTP/1.1",
"Host: api.abc.com",
"Accept: application/json, text/plain, */*",
"Content-Type: text/plain",
"",
"",
"--1494052623884--"
Expand Down Expand Up @@ -76,6 +77,7 @@ describe("HttpMultipartMixedBoundaryAdapter", () => {
"Host: api.abc.com",
"Accept: application/json, text/plain, */*",
"Jon: Samwell",
"Content-Type: text/plain",
"",
"",
"--1494052623884--"
Expand Down Expand Up @@ -115,6 +117,7 @@ describe("HttpMultipartMixedBoundaryAdapter", () => {
"Host: api.abc.com",
"Accept: application/json, text/plain, */*",
"content-disposition: something; name=unique0",
"Content-Type: text/plain",
"",
"",
"--1494052623884--"
Expand Down

0 comments on commit 47eff60

Please sign in to comment.