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'; /** * Newbury 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/newbury-comics/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "Spirit Phone Exclusive 2LP (Ripples)", "productType": "Vinyl", "collection": "exclusive-vinyl", "categorySlug": "music" }, { "title": "Forever Howlong 2LP (Opened and Signed)", "productType": "Vinyl", "collection": "autographed-vinyl", "categorySlug": "music" }, { "title": "Crosley Cruiser Turntable - Black", "productType": "Turntables", "collection": "vinyl", "categorySlug": null } ] });