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'; /** * Big B Comics — 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/big-b-comics/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "Spawn 1992 #4 Newsstand ed. - CGC 9.4 - $55.00", "productType": "Key Issues", "collection": "cgc-graded-comics", "categorySlug": "comics" }, { "title": "Deadpool 1997 #54 Direct Edition - CGC 9.8 - $300.00", "collection": "cgc-graded-comics", "categorySlug": "marvel_comics", "franchise": "Marvel" }, { "title": "Batman 1940 #232", "collection": "vintage-comics", "categorySlug": "dc_comics" }, { "title": "BCW Comic Bags and Boards Current 100ct", "collection": "comics", "categorySlug": null } ] });