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('gamesportal', () => {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": "Kaya's Ghostform [War of the Spark]",18 "collection": "magic-singles-instock",19 "type": "MTG Single",20 "variant": "Near Mint",21 "expect": "magic_the_gathering",22 "name": "Kaya's Ghostform",23 "set": "War of the Spark",24 "number": null,25 "conditionRaw": "Near Mint"26 },27 {28 "title": "Belle - Snowfield Strategist (Enchanted) (236/204) [Winterspell]",29 "collection": "disney-lorcana-singles",30 "type": "Lorcana Single",31 "variant": "Near Mint Holofoil",32 "expect": "disney_lorcana",33 "name": "Belle - Snowfield Strategist (Enchanted)",34 "set": "Winterspell",35 "number": "236/204"36 },37 {38 "title": "Roronoa Zoro (OP-06 Pre-Release Tournament) [Winner] [One Piece Promotion Cards]",39 "collection": "one-piece-ccg-singles",40 "type": "One Piece Single",41 "variant": "Lightly Played Foil",42 "expect": "one_piece_card_game",43 "conditionRaw": "Lightly Played"44 },45 {46 "title": "Ultimate Masters Booster Box",47 "collection": "sealed-magic-products",48 "type": "MTG Sealed",49 "tags": [50 "Booster Box",51 "Magic the Gathering"52 ],53 "expect": "magic_the_gathering"54 },55 {56 "title": "Magic Lorwyn Eclipsed Prerelease Ticket - Saturday 10am",57 "collection": "sealed-magic-products",58 "type": "Event",59 "expect": null60 }61 ]);62 });63});64