SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
2.9 KB · 78 lines typescript
Raw Blame History
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('gameology', () => {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": "Umbreon VMAX 215/203 - Pokemon Evolving Skies Holofoil",18                "collection": "pokemon-tcg-single-cards",19                "type": "Single Cards",20                "tags": [21                      "Number_215",22                      "Printing_Holofoil",23                      "Single Card Game: Pokemon TCG"24                ],25                "expect": "pokemon"26          },27          {28                "title": "Aang, at the Crossroads (Showcase) (TLA 346) - Avatar: The Last Airbender - Magic The Gathering",29                "collection": "magic-the-gathering-singles",30                "type": "Single Cards",31                "expect": "magic_the_gathering"32          },33          {34                "title": "MONKEY D. LUFFY (ONE PIECE MAGAZINE VOL.20) #14 2025 PSA 10",35                "collection": "graded-card",36                "type": "Graded Cards",37                "tags": [38                      "Graded Card Game: One Piece",39                      "Graded Cards"40                ],41                "expect": "one_piece_card_game",42                "grader": "psa",43                "grade": "10"44          },45          {46                "title": "Pokemon Charizard Pop Vinyl",47                "collection": "pop-vinyl-figures",48                "type": "Statues & Figures",49                "vendor": "Funko",50                "expect": "funko",51                "brand": "Funko"52          },53          {54                "title": "Dragon Ball Z Shen Long 7 Star Ball Statue with Mini Mountain",55                "collection": "statues-figures",56                "type": "Statues & Figures",57                "expect": "action_figures"58          },59          {60                "title": "Topps Premier League 2026 Trading Cards Booster Box",61                "collection": "topps-sports-cards",62                "type": "Sports Cards",63                "tags": [64                      "Sport Cards Sport: Soccer/Football"65                ],66                "expect": "soccer_cards",67                "brand": "Topps"68          },69          {70                "title": "Ultimate Guard Boulder Deck Case 100+ Standard Size Poppy Topaz Deck Box",71                "collection": "pop-vinyl-figures",72                "type": "Deck Boxes",73                "expect": null74          }75    ]);76  });77});78