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'; /** * Cardboard Memories — 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/cardboard-memories/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "Upper Deck - 2021-22 - Hockey - Series 1 - Trading Card Hobby Box", "productType": "Sports Cards", "collection": "hockey-cards", "categorySlug": "hockey_cards" }, { "title": "2023 Panini Prizm Football Blaster Box", "productType": "Sports Cards", "collection": "sports-cards", "categorySlug": "football_cards" }, { "title": "Ultra Pro One-Touch Magnetic Holder 35pt", "collection": "hockey-cards", "categorySlug": null }, { "title": "Amazing Spider-Man #300 Facsimile", "collection": "comic-books", "categorySlug": "marvel_comics" } ] });