// EMPTY_SHIP_GROUPS supplies empty arrays for the five ship-group / // fleet fields added to GameReport in Phase 19. Test fixtures spread // it into their report objects so the fixture body still focuses on // the fields under test, without forcing every spec to enumerate // the full GameReport surface. import type { ReportIncomingShipGroup, ReportLocalFleet, ReportLocalShipGroup, ReportOtherShipGroup, ReportUnidentifiedShipGroup, } from "../../src/api/game-state"; export const EMPTY_SHIP_GROUPS: { localShipGroups: ReportLocalShipGroup[]; otherShipGroups: ReportOtherShipGroup[]; incomingShipGroups: ReportIncomingShipGroup[]; unidentifiedShipGroups: ReportUnidentifiedShipGroup[]; localFleets: ReportLocalFleet[]; } = { localShipGroups: [], otherShipGroups: [], incomingShipGroups: [], unidentifiedShipGroups: [], localFleets: [], };