Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
fixup! Show old sidebar when vector_tile flag is inactive
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Innes committed Aug 29, 2019
1 parent 73ad944 commit 7f44a17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/src/__tests__/utils.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ it('creates an API URL for getting a single facility by OAR ID', () => {
it('creates an API URL for getting facilities with a query string', () => {
const qs = 'hello=world';
const expectedMatch = `/api/facilities/?hello=world&pageSize=${FACILITIES_REQUEST_PAGE_SIZE}`;
expect(makeGetFacilitiesURLWithQueryString(qs)).toEqual(expectedMatch);
expect(makeGetFacilitiesURLWithQueryString(qs, FACILITIES_REQUEST_PAGE_SIZE))
.toEqual(expectedMatch);
});

it('gets the value from a React Select option object', () => {
Expand Down

0 comments on commit 7f44a17

Please sign in to comment.