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 * Face to Face Games — 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/face-to-face-games/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "Mew - 011/025 - Rare Holo [cel25-011] [Holo]",15 "productType": "Singles",16 "collection": "pokemon-singles",17 "categorySlug": "pokemon"18 },19 {20 "title": "Dragon Shield Sleeves - Matte Black",21 "collection": "magic-the-gathering-sealed",22 "categorySlug": null23 },24 {25 "title": "Store Credit Top-Up",26 "collection": "magic-the-gathering-singles",27 "categorySlug": null28 }29 ]30});31