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%
1.4 KB · 40 lines typescript
Raw Blame History
1import { describe, expect, it } from 'vitest';2import meta from './meta.json' with { type: 'json' };3import { describeShopifyStore } from '../_g3-shops-na-lib/store-suite.js';4import createConnector from './index.js';56/**7 * Kidrobot — metadata-only Shopify store connector. The shared suite checks the taxonomy mapping of every8 * configured collection/rule, the exclusion regex on real title shapes, and normalises the live-captured9 * fixtures in data/fixtures/kidrobot/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12  "cases": [13    {14      "title": "OREO® 8\" Resin Dunny (PRE-ORDER)",15      "productType": "Dunny",16      "collection": "dunny",17      "categorySlug": "designer_toys",18      "brand": "Kidrobot"19    },20    {21      "title": "2026 CON EXCLUSIVE: McDonald's - Grimace in Disguise Large Plush (Limited Edition of 500)",22      "productType": "Plush",23      "collection": "limited-edition",24      "categorySlug": "plush"25    },26    {27      "title": "2026 CON EXCLUSIVE: Hello Kitty® & Mimmy Devilishly Cute T-Shirt",28      "productType": "Apparel",29      "collection": "limited-edition",30      "categorySlug": null31    },32    {33      "title": "Hello Kitty® Ita Plush and Lanyard Set",34      "productType": "Pins Lanyard Set",35      "collection": "limited-edition",36      "categorySlug": null37    }38  ]39});40