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('thecardvault', () => {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": "High Market (402)",18 "collection": "singles-all-card-games",19 "type": "Singles",20 "tags": [21 "FIC",22 "Land",23 "Magic",24 "Rare",25 "Singles"26 ],27 "variant": "Non-Foil / Near Mint",28 "expect": "magic_the_gathering",29 "name": "High Market",30 "number": "402",31 "conditionRaw": "Near Mint"32 },33 {34 "title": "Fezandipiti Ex (288)",35 "collection": "singles-all-card-games",36 "type": "Singles",37 "tags": [38 "Basic",39 "MEGAH",40 "Pokémon",41 "Singles"42 ],43 "variant": "Holofoil / Near Mint",44 "expect": "pokemon",45 "number": "288"46 },47 {48 "title": "Roronoa Zoro (OP01-025)",49 "collection": "singles-all-card-games",50 "type": "Singles",51 "tags": [52 "One Piece",53 "Singles",54 "Super Rare"55 ],56 "variant": "Foil / Near Mint",57 "expect": "one_piece_card_game"58 },59 {60 "title": "Panini - 2025 Prizm American Football (NFL) - Fat Pack Box",61 "collection": "sports-cards-all-products",62 "type": "Blaster Box",63 "tags": [64 "nfl-cards",65 "sports-cards"66 ],67 "expect": "football_cards"68 },69 {70 "title": "Panini - 2025/26 Noir Road To World Cup Football (Soccer) - Hobby Box",71 "collection": "sports-cards-all-products",72 "type": "Hobby Box",73 "tags": [74 "sports-cards"75 ],76 "expect": "soccer_cards"77 },78 {79 "title": "Youtooz - Digimon - Wargreymon - Vinyl Figure #1 (Limited Edition)",80 "collection": "youtooz-collectable-vinyl-figures",81 "type": "Vinyl Figure",82 "expect": "designer_toys",83 "number": null84 },85 {86 "title": "Funko Advent Calendar - Harry Potter",87 "collection": "funko-pop-vinyl-figures",88 "type": "Advent Calendar",89 "expect": null90 },91 {92 "title": "Ultra Pro - 9 Pocket Binder - Pokemon Charizard",93 "collection": "pokemon-tcg-all-products",94 "type": "Binder",95 "expect": null96 }97 ]);98 });99});100