Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rowheat02 committed Dec 4, 2024
1 parent 6776926 commit 90b5764
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion web/client/epics/__tests__/usersession-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,21 @@ describe('usersession Epics', () => {
testEpic(removeUserSessionEpicCreator(idSelector), 6, removeUserSession(), (actions) => {
expect(actions[2].type).toBe(CLOSE_FEATURE_GRID);
expect(actions[3].type).toBe(TEXT_SEARCH_RESET);
}, initialState, done);
}, {...initialState, map: {
present: {
center: {
x: -71.88845339541245,
y: 37.25911173702324,
crs: 'EPSG:4326'
},
maxExtent: [
-20037508.34,
-20037508.34,
20037508.34,
20037508.34
]
}
}}, done);
});

});

0 comments on commit 90b5764

Please sign in to comment.