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.2 KB · 34 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 * Strangecat Toys — 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/strangecat-toys/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12  "cases": [13    {14      "title": "Cyclops - Seaweed by PPDAdventure",15      "productType": "Designer Toys",16      "collection": "designer-toys",17      "categorySlug": "designer_toys"18    },19    {20      "title": "Funko Pop! Animation: Sailor Moon #89",21      "productType": "Pop Culture",22      "collection": "pop-culture",23      "categorySlug": "funko",24      "brand": "Funko"25    },26    {27      "title": "Strangecat Tote Bag",28      "productType": "Bags",29      "collection": "designer-toys",30      "categorySlug": null31    }32  ]33});34