TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1import { describe, expect, it } from 'vitest';2import meta from './meta.json' with { type: 'json' };3import { describeShopifyStore } from '../_g3-shops-na-lib/store-suite.js';4import createConnector from './index.js';56/**7 * Newbury Comics — metadata-only Shopify store connector. The shared suite checks the taxonomy mapping of every8 * configured collection/rule, the exclusion regex on real title shapes, and normalises the live-captured9 * fixtures in data/fixtures/newbury-comics/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "Spirit Phone Exclusive 2LP (Ripples)",15 "productType": "Vinyl",16 "collection": "exclusive-vinyl",17 "categorySlug": "music"18 },19 {20 "title": "Forever Howlong 2LP (Opened and Signed)",21 "productType": "Vinyl",22 "collection": "autographed-vinyl",23 "categorySlug": "music"24 },25 {26 "title": "Crosley Cruiser Turntable - Black",27 "productType": "Turntables",28 "collection": "vinyl",29 "categorySlug": null30 }31 ]32});33