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('ninoma', () => {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": "Nendoroid \"Blue Archive\" Asagi Mutsuki",18 "collection": "figures-companies-good-smile-company-nendoroid",19 "type": "Figure",20 "vendor": "Good Smile Company",21 "expect": "action_figures",22 "series": "Nendoroid",23 "brand": "Good Smile Company"24 },25 {26 "title": "\"Berserk\" figma#410 Guts Kyousenshi Armor Ver. Repainting Skull Edition",27 "collection": "figma",28 "type": "Figure",29 "vendor": "Max Factory",30 "expect": "action_figures",31 "series": "figma"32 },33 {34 "title": "\"Overlord\" elCOCO 1/7 Scale Figure Albedo",35 "collection": "scale-figures",36 "type": "Figure",37 "vendor": "elCOCO",38 "expect": "action_figures",39 "series": "Scale Figure",40 "brand": "elCOCO"41 },42 {43 "title": "HG 1/144 \"Mobile Suit Gundam: The Witch from Mercury\" Gundam Aerial",44 "collection": "gundam-model-kits-gunpla",45 "type": "Model Kits",46 "vendor": "Bandai",47 "expect": "gundam",48 "franchise": "Gundam"49 },50 {51 "title": "\"Pokemon Card Game MEGA\" Expansion Pack Munikis Zero / Nullifying Zero",52 "collection": "pokemon-tcg",53 "type": "TCG",54 "vendor": "Pokemon",55 "expect": "pokemon"56 },57 {58 "title": "Nintendo Switch \"Pokemon Legends Z-A\"",59 "collection": "video-games",60 "type": "Video Games",61 "vendor": "Nintendo",62 "expect": "nintendo_games"63 },64 {65 "title": "\"Jujutsu Kaisen\" Acrylic Stand Gojo Satoru",66 "collection": "figures-for-sale",67 "type": "Character Goods",68 "expect": null69 }70 ]);71 });72});73