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('cardmerchant-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": "CookyYummy [JUSH-EN017] Collector's Rare",18 "collection": "yu-gi-oh-singles",19 "type": "Yugioh Single",20 "tags": [21 "1st Edition",22 "Justice Hunters"23 ],24 "variant": "Near Mint / Lightly Played 1st Edition",25 "expect": "yugioh",26 "name": "CookyYummy",27 "set": "JUSH-EN017",28 "conditionRaw": "Near Mint"29 },30 {31 "title": "Heart of Fyendal [ANQ001] (Compendium of Rathe - Antiquity Pack)",32 "collection": "fab-singles",33 "type": "Flesh And Blood Single",34 "variant": "Moderately Played",35 "expect": "flesh_and_blood",36 "name": "Heart of Fyendal",37 "set": "ANQ001",38 "conditionRaw": "Moderately Played"39 },40 {41 "title": "Lightning Bolt [Magic 2011]",42 "collection": "mtg-singles-instock",43 "type": "MTG Single",44 "variant": "Near Mint",45 "expect": "magic_the_gathering",46 "set": "Magic 2011"47 },48 {49 "title": "One Piece TCG Double Pack Set Vol 9 [DP-09]",50 "collection": "one-piece-tcg",51 "type": "One Piece Sealed",52 "expect": "one_piece_card_game"53 },54 {55 "title": "Dragon Shield Matte Sleeves - Black (100)",56 "collection": "mtg-sealed",57 "type": "Accessories",58 "expect": null59 }60 ]);61 });62});63