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'; /** * Super7 — 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/super7/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "G.I. Joe ReAction+ Figures - Snake Eyes (Skybound Comic Box Series, Issue #2)", "productType": "Figures", "collection": "movie-action-figures", "categorySlug": "action_figures", "brand": "Super7" }, { "title": "Godzilla Kandy Kaiju Soft Vinyl - Clear Blue", "productType": "Figures", "collection": "godzilla", "categorySlug": "designer_toys", "franchise": "Godzilla" }, { "title": "Godzilla Skate T-Shirt - Black", "productType": "Apparel", "collection": "godzilla", "categorySlug": null } ] });