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('totalcards', () => {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 - Sword & Shield - Pokemon Go - Wartortle - 016/78",18 "collection": "pokemon-single-cards",19 "type": "Single Card",20 "tags": [21 "Pokemon"22 ],23 "expect": "pokemon",24 "name": "Wartortle",25 "set": "Sword & Shield - Pokemon Go",26 "number": "016/78",27 "franchise": "Pokémon"28 },29 {30 "title": "Magic The Gathering - Marvel Super Heroes - Shang-Chi, Master of Kung Fu (Borderless Classic Comic Card) - 0396 (Foil)",31 "collection": "magic-the-gathering-single-cards",32 "type": "Single Card",33 "expect": "magic_the_gathering",34 "name": "Shang-Chi, Master of Kung Fu (Borderless Classic Comic Card)",35 "number": "0396"36 },37 {38 "title": "Pokemon - Mega Evolution - Ascended Heroes - Mega Gengar ex - 284/217",39 "collection": "pokemon-single-cards",40 "type": "Single Card",41 "variant": "NM",42 "expect": "pokemon",43 "conditionRaw": "NM"44 },45 {46 "title": "Funko POP! - Pokemon - Blaziken Vinyl Figure #983",47 "collection": "funko-pop",48 "type": "Figure",49 "tags": [50 "Pokemon"51 ],52 "expect": "funko",53 "brand": "Funko"54 },55 {56 "title": "Wolverine Claremont Miller - Issue 1 Facsimile Edition - New Printing",57 "collection": "comic-books",58 "type": "Comic Book",59 "vendor": "Dynamic Forces",60 "expect": "marvel_comics",61 "brand": "Marvel"62 },63 {64 "title": "Free Comic Book Day 2024 - Witches of Brooklyn Exclusive Issue 1",65 "collection": "comic-books",66 "type": "Comic Book",67 "expect": "comics",68 "year": 202469 },70 {71 "title": "Ultra Pro - Pokemon - 9 Pocket Portfolio - Charizard",72 "collection": "pokemon-sealed-products",73 "type": "Accessories",74 "expect": null75 },76 {77 "title": "Pokemon - Prize Pack Series 6 - Weekly League Ticket",78 "collection": "pokemon-sealed-products",79 "type": "Event",80 "expect": null81 }82 ]);83 });84});85