-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: broken deep links on the homecards (#3357)
### Description Context: https://valora-app.slack.com/archives/C02N3AR2P2S/p1673628550702569?thread_ts=1673565367.051299&cid=C02N3AR2P2S URLSearchParams from the `url` lib doesn't work as expected, in other places we're using this from the global scope. ### Test plan Tested manually, added a e2e test ### Related issues N/A ### Backwards compatibility Y
- Loading branch information
1 parent
67f6b8e
commit b2650ef
Showing
3 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import HandleNotification from './usecases/HandleNotification' | ||
import { quickOnboarding } from './utils/utils' | ||
|
||
describe.skip('Handle app open from push notifications', () => { | ||
describe('Handle app open from push notifications', () => { | ||
beforeAll(async () => { | ||
await quickOnboarding() | ||
}) | ||
|
||
describe('HandleNotification', HandleNotification) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters