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('cherrycollectables', () => {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": "PSA 10 Kai'sa - Daughter of the Void 299* - Origins Signature Overnumber 424",18 "collection": "psa-10",19 "type": "Singles",20 "tags": [21 "Condition_Graded",22 "grade 10",23 "Grader_PSA"24 ],25 "expect": "pokemon",26 "grader": "psa",27 "grade": "10"28 },29 {30 "title": "JAPANESE CGC 8 Machoke - 177/165 sv2a - Art Rare Pokemon 151 (189)",31 "collection": "pokemon-singles",32 "type": "Singles",33 "tags": [34 "CGC 8",35 "japanese-pokemon",36 "pokemon singles"37 ],38 "expect": "pokemon",39 "grader": "cgc",40 "grade": "8"41 },42 {43 "title": "2025 Donruss WNBA RICKEA JACKSON Net Marvels Orange Fireworks 46/75",44 "collection": "nba-singles",45 "type": "Singles",46 "tags": [47 "Collection_Donruss",48 "Sport_NBA"49 ],50 "expect": "basketball_cards",51 "year": 202552 },53 {54 "title": "2026 Topps Chrome Premier League EPL ERLING HAALAND Hidden Gems SSP #3",55 "collection": "soccer-singles",56 "type": "Singles",57 "tags": [58 "Sport_Soccer"59 ],60 "expect": "soccer_cards"61 },62 {63 "title": "[FOIL] Mountain (Chocobo Track Foil) #481 - LAND FIC - Commander: FINAL FANTASY",64 "collection": "magic-the-gathering-singles",65 "type": "Singles",66 "tags": [67 "Brand_Magic the Gathering",68 "foil"69 ],70 "variant": "Near Mint",71 "expect": "magic_the_gathering",72 "conditionRaw": "Near Mint"73 },74 {75 "title": "Derby・Daily MLB Team Based Opening - #33362 (Sep 09 4pm)",76 "collection": "mlb-singles",77 "type": "Breaks",78 "expect": null79 },80 {81 "title": "2024 Prizm Basketball Hobby Box Break - Random Team Spot",82 "collection": "nba-singles",83 "type": "Breaks",84 "expect": null85 }86 ]);87 });88});89