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('flagshipgames', () => {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": "Accursed Spirit [Magic 2015]",18 "collection": "magic-2015",19 "type": "MTG Single",20 "variant": "Near Mint Foil",21 "expect": "magic_the_gathering",22 "name": "Accursed Spirit",23 "set": "Magic 2015",24 "conditionRaw": "Near Mint"25 },26 {27 "title": "Accelgor (094/086) [Scarlet & Violet: White Flare]",28 "collection": "english-pokemon-1",29 "type": "Pokemon Single",30 "tags": [31 "Illustration Rare"32 ],33 "variant": "Near Mint Holofoil",34 "expect": "pokemon",35 "name": "Accelgor",36 "number": "094/086",37 "set": "Scarlet & Violet: White Flare"38 },39 {40 "title": "A Good Thing [Mystery Booster Playtest Cards]",41 "collection": "mystery-booster",42 "type": "MTG Single",43 "variant": "Near Mint",44 "expect": "magic_the_gathering"45 },46 {47 "title": "Clive, Ifrit's Dominant [Final Fantasy]",48 "collection": "final-fantasy",49 "type": "MTG Single",50 "variant": "Near Mint",51 "expect": "magic_the_gathering"52 },53 {54 "title": "Charizard / リザードン 001/025",55 "collection": "japanese-pokemon-1",56 "type": "Japanese Pokemon",57 "variant": "Near Mint",58 "expect": "pokemon",59 "set": null60 },61 {62 "title": "Avatar: The Last Airbender - Collector Booster Display",63 "collection": "mtg-sealed-products",64 "type": "MTG Sealed",65 "variant": "New",66 "expect": "magic_the_gathering"67 },68 {69 "title": "1 Card Mystery Pack",70 "collection": "english-pokemon-1",71 "type": "Pokemon Single",72 "expect": null73 }74 ]);75 });76});77