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'; /** * Mondo — 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/mondo/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "Sin City - Original Motion Picture Soundtrack", "productType": "Vinyl", "collection": "soundtracks", "categorySlug": "music" }, { "title": "Teenage Mutant Ninja Turtles - Leonardo 1/6 Scale Figure", "productType": "1/6 Scale", "collection": "collectibles", "categorySlug": "action_figures" }, { "title": "Godzilla Soft Vinyl - Burning Edition", "productType": "Soft Vinyl", "collection": "collectibles", "categorySlug": "designer_toys" }, { "title": "The Thing Enamel Pin Set", "productType": "Pins", "collection": "collectibles", "categorySlug": null } ] });