• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

decentraland / marketplace / 8112105893

01 Mar 2024 01:26PM UTC coverage: 66.172% (-0.1%) from 66.297%
8112105893

Pull #2161

github

LautaroPetaccio
Merge branch 'master' of github.com:decentraland/marketplace into feat/improve-marketplace-loading-time
Pull Request #2161: feat: Reduce Marketplace size by async loading Squid

2481 of 4871 branches covered (50.93%)

Branch coverage included in aggregate %.

10 of 14 new or added lines in 3 files covered. (71.43%)

15 existing lines in 8 files now uncovered.

7550 of 10288 relevant lines covered (73.39%)

71.18 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

77.78
/webapp/src/modules/proximity/actions.ts
1
import { action } from 'typesafe-actions'
28✔
2
import { Proximity } from './types'
3

4
export const FETCH_PROXIMITY_REQUEST = '[Request] Fetch Proximity'
2,198✔
5
export const FETCH_PROXIMITY_SUCCESS = '[Success] Fetch Proximity'
1,961✔
6
export const FETCH_PROXIMITY_FAILURE = '[Failure] Fetch Proximity'
1,961✔
7

8
export const fetchProximityRequest = () => action(FETCH_PROXIMITY_REQUEST)
28✔
9
export const fetchProximitySuccess = (proximity: Record<string, Proximity>) =>
28✔
10
  action(FETCH_PROXIMITY_SUCCESS, { proximity })
×
11
export const fetchProximityFailure = (error: string) =>
28✔
UNCOV
12
  action(FETCH_PROXIMITY_FAILURE, { error })
×
13

14
export type FetchProximityRequestAction = ReturnType<
15
  typeof fetchProximityRequest
16
>
17
export type FetchProximitySuccessAction = ReturnType<
18
  typeof fetchProximitySuccess
19
>
20
export type FetchProximityFailureAction = ReturnType<
21
  typeof fetchProximityFailure
22
>
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc