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('toyzeroplus', () => {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": "Daruma PP BABY (Ivory edition)",18 "collection": "art-toy",19 "type": "Art Toy",20 "vendor": "TOYZEROPLUS",21 "tags": [22 "Artist_aaaz"23 ],24 "expect": "designer_toys",25 "brand": "TOYZEROPLUS"26 },27 {28 "title": "Ultraman Kaiju Daruma Series Vol.1",29 "collection": "blind-box",30 "type": "Blind Box",31 "variant": "Set",32 "expect": "designer_toys"33 },34 {35 "title": "200% PP Lucky Cat Daruma (Black Cat Edition)",36 "collection": "pp-baby",37 "type": "Art Toy",38 "expect": "designer_toys",39 "series": "PP Baby"40 },41 {42 "title": "Lulu the Piggy Canvas Tote Bag",43 "collection": "lulu-the-piggy",44 "type": "Side Product",45 "expect": null46 }47 ]);48 });49});50