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('travellingman', () => {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": "Jujutsu Kaisen Volume 1",18 "collection": "manga",19 "type": "Manga",20 "tags": [21 "All Manga",22 "Viz"23 ],24 "expect": "manga"25 },26 {27 "title": "20th Century Men",28 "collection": "all-graphic-novels",29 "type": "Graphic Novel",30 "tags": [31 "Image Comics",32 "graphic novel"33 ],34 "expect": "independent_comics"35 },36 {37 "title": "Batman: Year One Deluxe Edition",38 "collection": "all-graphic-novels",39 "type": "Graphic Novel",40 "tags": [41 "DC"42 ],43 "expect": "dc_comics",44 "brand": "DC"45 },46 {47 "title": "Dragon Ball Daima: Glorio S.H.Figuarts",48 "collection": "dragon-ball-figuarts",49 "type": "Merchandise",50 "tags": [51 "Figuarts"52 ],53 "expect": "action_figures",54 "series": "S.H.Figuarts",55 "brand": "Bandai"56 },57 {58 "title": "Pokemon TCG Mega Evolution 5 Pitch Black Booster Box",59 "collection": "pokemon-tcg",60 "type": "CCG",61 "tags": [62 "CCG",63 "Pokemon TCG"64 ],65 "expect": "pokemon"66 },67 {68 "title": "Pokemon TCG Mega Evolution - Pitch Black 9 Pocket Portfolio",69 "collection": "pokemon-tcg",70 "type": "Accessories",71 "tags": [72 "Card Album",73 "CCG Accessories"74 ],75 "expect": null76 },77 {78 "title": "Sirius Dice: Magic The Gathering TMNT 55mm Spindown Life Counter",79 "collection": "magic-the-gathering",80 "type": "Dice",81 "expect": null82 }83 ]);84 });85});86