Skip to content

Commit

Permalink
fix(http): add missing methods
Browse files Browse the repository at this point in the history
  • Loading branch information
NetanelBasal committed Jun 21, 2019
1 parent 843c5df commit b608473
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/spectator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@netbasal/spectator",
"description": "Angular tests made easy",
"author": "Netanel Basal <netanel7799s@gmail.com>",
"version": "3.9.1",
"version": "3.9.2",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
6 changes: 5 additions & 1 deletion projects/spectator/src/lib/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ export enum HTTPMethod {
GET = 'GET',
POST = 'POST',
DELETE = 'DELETE',
PUT = 'PUT'
PUT = 'PUT',
PATCH = 'PATCH',
HEAD = 'HEAD',
JSONP = 'JSONP',
OPTIONS = 'OPTIONS'
}

export class SpectatorHTTP<T> {
Expand Down

0 comments on commit b608473

Please sign in to comment.