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 * The Game Steward — 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/the-game-steward/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "Nemesis: Medic Expansion (Kickstarter Special)",15 "productType": "Kickstarter Board Game Expansion",16 "collection": "all-kickstarter-exclusive-badge",17 "categorySlug": "board_games"18 },19 {20 "title": "Marvel United: Play Mat (Kickstarter Special)",21 "productType": "Kickstarter Board Game Accessory",22 "collection": "all-kickstarter-exclusive-badge",23 "categorySlug": null24 }25 ]26});27