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('goblingames-nz', () => {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": "Misdirection [Mercadian Masques] Foil",18 "collection": "mtg-singles-in-stock",19 "type": "MTG Single",20 "variant": "Lightly Played Foil",21 "expect": "magic_the_gathering",22 "name": "Misdirection",23 "set": "Mercadian Masques",24 "conditionRaw": "Lightly Played"25 },26 {27 "title": "Forcefield [Unlimited Edition]",28 "collection": "mtg-singles-in-stock",29 "type": "MTG Single",30 "variant": "NM-Mint",31 "expect": "magic_the_gathering",32 "set": "Unlimited Edition"33 },34 {35 "title": "Aaron's Collection 088/111 - Rising Rivals",36 "collection": "pokemon-tcg-single-cards",37 "type": "Pokemon Single",38 "tags": [39 "Brand_Pokemon",40 "Number_88"41 ],42 "variant": "Lightly Played",43 "expect": "pokemon",44 "set": null,45 "conditionRaw": "Lightly Played"46 },47 {48 "title": "Overwhelming Barrage | (092/252) [Spark of Rebellion]",49 "collection": "star-wars-unlimited-single-cards",50 "type": "Star Wars: Unlimited Single",51 "variant": "NM-Mint",52 "expect": "star_wars_tcg",53 "name": "Overwhelming Barrage",54 "set": "Spark of Rebellion",55 "number": "092/252"56 },57 {58 "title": "Blue-Eyes White Dragon [SDKS-EN009] Common",59 "collection": "yugioh-single-cards",60 "type": "Yugioh Single",61 "variant": "NM-Mint Unlimited",62 "expect": "yugioh",63 "name": "Blue-Eyes White Dragon"64 },65 {66 "title": "Dragon Shield Dual Matte Sleeves - Ruin",67 "collection": "magic-the-gathering-sealed",68 "type": "Accessories",69 "expect": null70 }71 ]);72 });73});74