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'; /** * Toy Snowman — 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/toy-snowman/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "Star Wars - Darth Vader (Battle Damaged) Deluxe 1/6th Scale Collectible Figure - DX45", "productType": "Collectables > Action Figures > toys", "collection": "star-wars-the-black-series", "categorySlug": "action_figures", "franchise": "Star Wars" }, { "title": "Citadel Colour Layer Paint - Ushabti Bone", "collection": "warhammer-40k", "categorySlug": null }, { "title": "Codex: Space Marines (10th Edition)", "collection": "warhammer-40k", "categorySlug": null } ] });