codeforthailand/election-live

View on GitHub
src/components/__fixtures__/PartyStatsMockData.js

Summary

Maintainability
A
0 mins
Test Coverage
import { getPartyById } from "../../models/information/index.js"

export function getMockPartyStatsNationwide() {
  return require("./PartyStatsNationwide.json").map(basePartyStatRow => ({
    ...basePartyStatRow,
    party: getPartyById(basePartyStatRow._partyId),
  }))
}