Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
hupe1980 committed Apr 9, 2021
1 parent 30e5b7f commit 626773a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-google-maps-mock",
"version": "1.0.6",
"version": "1.0.7",
"description": "Jest mock for google maps",
"license": "MIT",
"repository": {
Expand Down
14 changes: 7 additions & 7 deletions src/createGoogleMapsMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,13 +355,13 @@ const createGoogleMapsMock = (libraries = []) => {
getPlacePredictions: jest.fn(),
})),
PlacesServiceStatus: {
INVALID_REQUEST: "INVALID_REQUEST",
NOT_FOUND: "NOT_FOUND",
OK: "OK",
OVER_QUERY_LIMIT: "OVER_QUERY_LIMIT",
REQUEST_DENIED: "REQUEST_DENIED",
UNKNOWN_ERROR: "UNKNOWN_ERROR",
ZERO_RESULTS: "ZERO_RESULTS",
INVALID_REQUEST: 'INVALID_REQUEST',
NOT_FOUND: 'NOT_FOUND',
OK: 'OK',
OVER_QUERY_LIMIT: 'OVER_QUERY_LIMIT',
REQUEST_DENIED: 'REQUEST_DENIED',
UNKNOWN_ERROR: 'UNKNOWN_ERROR',
ZERO_RESULTS: 'ZERO_RESULTS',
},
};
}
Expand Down

0 comments on commit 626773a

Please sign in to comment.