import { describe, expect, it } from 'vitest'; import meta from './meta.json' with { type: 'json' }; import { describeShopifyStore } from '../_g3-shops-na-lib/store-suite.js'; import createConnector from './index.js'; /** * Strangecat Toys — metadata-only Shopify store connector. The shared suite checks the taxonomy mapping of every * configured collection/rule, the exclusion regex on real title shapes, and normalises the live-captured * fixtures in data/fixtures/strangecat-toys/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "Cyclops - Seaweed by PPDAdventure", "productType": "Designer Toys", "collection": "designer-toys", "categorySlug": "designer_toys" }, { "title": "Funko Pop! Animation: Sailor Moon #89", "productType": "Pop Culture", "collection": "pop-culture", "categorySlug": "funko", "brand": "Funko" }, { "title": "Strangecat Tote Bag", "productType": "Bags", "collection": "designer-toys", "categorySlug": null } ] });