TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1import { describe, expect, it } from 'vitest';2import meta from './meta.json' with { type: 'json' };3import { localMeta } from '../_lib/local-meta.js';4import { expectMapping, storeSuite } from '../_g4-shops-intl-lib/suite.js';5import createConnector from './index.js';67const parsed = localMeta(meta);8const connector = createConnector(parsed);910describe('goodgames', () => {11 // Framework fixture suite + store invariants (currency, categories, listings only, stable ids).12 storeSuite(parsed, connector, it, expect);1314 it('maps live-observed titles onto taxonomy slugs and skips accessories/apparel', async () => {15 await expectMapping(parsed, connector, expect, [16 {17 "title": "Pokemon TCG - Paldea Partners Tin",18 "collection": "pokemon",19 "type": "Trading Card Games",20 "tags": [21 "TCG_PKM"22 ],23 "variant": "Meowscarada Ex",24 "expect": "pokemon"25 },26 {27 "title": "Magic: The Gathering Final Fantasy Play Booster Box",28 "collection": "magic-the-gathering",29 "type": "Trading Card Games",30 "tags": [31 "TCG_MTG"32 ],33 "expect": "magic_the_gathering"34 },35 {36 "title": "2022 - 2023 Donruss Basketball Booster Box",37 "collection": "sports-cards",38 "type": "Sports Cards",39 "tags": [40 "Basketball",41 "Sports Cards"42 ],43 "expect": "basketball_cards"44 },45 {46 "title": "PANINI 202223 Donruss Soccer Fat Pack",47 "collection": "sports-cards",48 "type": "Sports Cards",49 "tags": [50 "Soccer"51 ],52 "expect": "soccer_cards"53 },54 {55 "title": "Spy Family PM Figure - Yor Forger (Plain Clothes)",56 "collection": "anime-figure",57 "type": "Anime Figures",58 "vendor": "Sega",59 "expect": "action_figures",60 "brand": "Sega"61 },62 {63 "title": "Gundam Card Game - Steel Requiem [GD03] Booster Box",64 "collection": "gundam-card-game",65 "type": "Trading Card Games",66 "expect": "other_tcg"67 },68 {69 "title": "Dr Seuss - Merry Grinchmas Game",70 "collection": "funko",71 "type": "Board Games",72 "expect": null73 },74 {75 "title": "Magic: The Gathering Repack Booster",76 "collection": "magic-the-gathering",77 "type": "ZZ - Other",78 "expect": null79 }80 ]);81 });82});83