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('footdistrict', () => {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": "Air Jordan 7 Retro \"Miró\"",18 "collection": "sneakers-jordan",19 "type": "Calzado",20 "vendor": "Jordan",21 "variant": "42",22 "expect": "nike_jordan",23 "brand": "Jordan"24 },25 {26 "title": "Nike Dunk Low Retro Premium \"Corduroy\"",27 "collection": "sneakers",28 "type": "Calzado",29 "vendor": "Nike",30 "expect": "nike_jordan",31 "brand": "Nike"32 },33 {34 "title": "Samba OG \"Cloud White\"",35 "collection": "sneakers-adidas-samba",36 "type": "Calzado",37 "vendor": "adidas",38 "expect": "adidas_yeezy",39 "brand": "adidas"40 },41 {42 "title": "Gel-Kayano 14 \"Cream\"",43 "collection": "sneakers",44 "type": "Calzado",45 "vendor": "ASICS",46 "expect": "sneakers"47 },48 {49 "title": "Medicom Toy Be@rbrick CANOTWAIT William Chan 400%",50 "collection": "art-toys",51 "type": "Lifestyle",52 "vendor": "Medicom Toy",53 "expect": "designer_toys"54 },55 {56 "title": "Gorra Nike ACG Club Unisex",57 "collection": "sneakers",58 "type": "Accesorios",59 "expect": null60 }61 ]);62 });63});64