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 * 401 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/401-games/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "2023-24 Upper Deck Series 2 Hockey Hobby Box",15 "productType": "Sports Cards",16 "collection": "all-sports-cards",17 "categorySlug": "hockey_cards"18 },19 {20 "title": "2024 Topps Chrome Baseball Hobby Box",21 "collection": "all-sports-cards",22 "categorySlug": "baseball_cards"23 },24 {25 "title": "Easy-Buy Buylist Submission (Pokemon)",26 "collection": "all-pokemon",27 "categorySlug": null28 },29 {30 "title": "Pokemon - SWSH Darkness Ablaze Online Pack (Unused Digital Code)",31 "collection": "all-pokemon",32 "categorySlug": null33 },34 {35 "title": "Ultra Pro Deck Box - Black",36 "collection": "all-magic-the-gathering",37 "categorySlug": null38 },39 {40 "title": "Mareep (Japanese) - 036/172 - No Rarity",41 "collection": "all-pokemon",42 "categorySlug": "pokemon",43 "franchise": "Pokémon"44 }45 ]46});47