SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
3.2 KB · 92 lines typescript
Raw Blame History
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('kickgame', () => {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 Low OG x Travis Scott SP 'Medium Olive'",18                "collection": "sneakers",19                "type": "Shoes",20                "tags": [21                      "Air Jordan",22                      "Jordan"23                ],24                "variant": "UK 8 | EU 42.5 | US 9",25                "expect": "nike_jordan",26                "brand": "Jordan"27          },28          {29                "title": "Nike Dunk Low 'Grey Fog'",30                "collection": "sneakers",31                "type": "Nike Shoes",32                "expect": "nike_jordan",33                "brand": "Nike"34          },35          {36                "title": "Adidas Yeezy Boost 350 V2 Core Black-Red",37                "collection": "sneakers",38                "type": "Adidas Shoes",39                "expect": "adidas_yeezy",40                "brand": "adidas Yeezy"41          },42          {43                "title": "New Balance 2002R Protection Pack Rain Cloud",44                "collection": "sneakers",45                "type": "Shoes",46                "expect": "new_balance_asics_other"47          },48          {49                "title": "Bearbrick x Kith Palette 10 Year Anniversary 100% & 400% Set",50                "collection": "bearbrick",51                "type": "Collectibles",52                "expect": "designer_toys",53                "brand": "Medicom Toy"54          },55          {56                "title": "Swatch x Omega Bioceramic Moonswatch Mission to the Moon",57                "collection": "watches",58                "type": "Accessories",59                "tags": [60                      "Omega",61                      "Swatch",62                      "Watch"63                ],64                "expect": "other_watches",65                "brand": "Swatch"66          },67          {68                "title": "Pop Mart Labubu The Monsters Exciting Macarons (Mystery Box of 1)",69                "collection": "labubu",70                "type": "Accessories",71                "tags": [72                      "Collectibles",73                      "Pop Mart"74                ],75                "expect": "designer_toys"76          },77          {78                "title": "KAWS x UNIQLO UT Graphic T-Shirt 'Black'",79                "collection": "kaws",80                "type": "Clothing",81                "expect": null82          },83          {84                "title": "Fear of God Essentials Hoodie Dark Oatmeal",85                "collection": "sneakers",86                "type": "Clothing",87                "expect": null88          }89    ]);90  });91});92