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 * Hobbiesville — 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/hobbiesville/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "Pyrohemia (PLC-119): (colorshifted)",15 "productType": "Single",16 "collection": "magic-singles",17 "categorySlug": "magic_the_gathering",18 "franchise": "Magic: The Gathering"19 },20 {21 "title": "LEGO Star Wars Minifigure - Darth Vader",22 "collection": "lego-star-wars",23 "categorySlug": "lego_minifigures",24 "brand": "LEGO"25 },26 {27 "title": "Ultimate Guard Binder 9-Pocket",28 "collection": "magic-singles",29 "categorySlug": null30 }31 ]32});33