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('kapowtoys', () => {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": "Marvel Legends MCU 10th Anniversary Red Skull Action Figure",18 "collection": "marvel-legends-1",19 "type": "Marvel Legends / New Arrival",20 "expect": "action_figures",21 "brand": "Hasbro",22 "series": "Marvel Legends",23 "franchise": "Marvel"24 },25 {26 "title": "Hot Toys Iron Man Mark 85 Battle Damaged 1/6th Scale Figure",27 "collection": "hot-toys",28 "type": "Hot Toys",29 "expect": "action_figures",30 "brand": "Hot Toys"31 },32 {33 "title": "MAFEX No.185 Spider-Man (Classic Costume Ver.)",34 "collection": "medicon-mafex",35 "type": "Medicom MAFEX",36 "expect": "action_figures",37 "series": "MAFEX"38 },39 {40 "title": "Bandai MG 1/100 RX-78-2 Gundam Ver.3.0",41 "collection": "gundam",42 "type": "Gundam",43 "expect": "gundam",44 "franchise": "Gundam"45 },46 {47 "title": "Kapow Toys Logo T-Shirt Black L",48 "collection": "hot-toys",49 "type": "Gifts & Apparel",50 "expect": null51 },52 {53 "title": "Hot Toys Pre-Order Deposit",54 "collection": "hot-toys",55 "type": "Hot Toys",56 "expect": null57 }58 ]);59 });60});61