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'; /** * Martian 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/martian-toys/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "DR76 by Dragon76 x Martian Toys", "productType": "vinyl toy", "collection": "designer-toys", "categorySlug": "designer_toys" }, { "title": "Martian Toys Logo T-Shirt", "productType": "Apparel", "collection": "designer-toys", "categorySlug": null }, { "title": "Santarchy Art Print 11x17", "productType": "Prints", "collection": "designer-toys", "categorySlug": null } ] });