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('overkillshop', () => {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 1 Mid GS",18 "collection": "jordan-sneaker",19 "type": "Overkill Archive",20 "vendor": "Jordan",21 "tags": [22 "554725-079",23 "Archive"24 ],25 "variant": "36",26 "expect": "nike_jordan",27 "brand": "Jordan"28 },29 {30 "title": "Fulcrum Star",31 "collection": "sneaker",32 "type": "Low Top Sneakers",33 "vendor": "Karhu",34 "tags": [35 "Karhu",36 "Low Tops"37 ],38 "expect": "new_balance_asics_other"39 },40 {41 "title": "Handball Spezial",42 "collection": "sneaker",43 "type": "Low Top Sneakers",44 "vendor": "adidas",45 "tags": [46 "adidas"47 ],48 "expect": "adidas_yeezy",49 "brand": "adidas"50 },51 {52 "title": "Be@rbrick Girl with a Pearl Earring 1000%",53 "collection": "medicom",54 "type": "Collectibles & Toys",55 "vendor": "Medicom",56 "expect": "designer_toys"57 },58 {59 "title": "Cutline Hoodie",60 "collection": "sneaker",61 "type": "Apparel",62 "vendor": "adidas",63 "expect": null64 }65 ]);66 });67});68