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%
2.8 KB · 79 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('crepslocker', () => {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": "Preloved - Air Jordan 1 Retro High OG Bred Toe",18                "collection": "air-jordan",19                "type": "Trainers",20                "tags": [21                      "Air Jordan",22                      "Condition: Very good",23                      "preloved"24                ],25                "variant": "UK 9",26                "expect": "nike_jordan",27                "brand": "Jordan"28          },29          {30                "title": "Nike Dunk Low Retro Black White Panda 2021",31                "collection": "nike-dunk",32                "type": "Trainers",33                "variant": "UK 6 | EU 39 / Black",34                "expect": "nike_jordan",35                "brand": "Nike"36          },37          {38                "title": "Preloved - Adidas Yeezy Boost 350 Pirate Black (2015)",39                "collection": "preloved-footwear",40                "type": "Trainers",41                "expect": "adidas_yeezy",42                "brand": "adidas Yeezy",43                "year": 201544          },45          {46                "title": "Dior B22 Sneakers White Blue",47                "collection": "footwear",48                "type": "Trainers",49                "expect": "new_balance_asics_other"50          },51          {52                "title": "Swatch x Audemars Piguet Royal Pop Ocho Negro With Rubber Strap",53                "collection": "watches",54                "type": "Watches",55                "expect": "other_watches",56                "brand": "Swatch"57          },58          {59                "title": "Pokemon Mega Evolution Pitch Black Booster Pack (Random Pack Art)",60                "collection": "pokemon",61                "type": "Collectables",62                "expect": "pokemon"63          },64          {65                "title": "Supreme x Jordan Black Track Jacket (SS26)",66                "collection": "air-jordan",67                "type": "Coats & Jackets",68                "expect": null69          },70          {71                "title": "Cartier Santos Sunglasses Gold",72                "collection": "footwear",73                "type": "Sunglasses",74                "expect": null75          }76    ]);77  });78});79