import { describe, expect, it } from 'vitest'; import meta from './meta.json' with { type: 'json' }; import { describeShopifyStore } from '../_g3-shops-na-lib/store-suite.js'; import createConnector from './index.js'; /** * KanZen Games — metadata-only Shopify store connector. The shared suite checks the taxonomy mapping of every * configured collection/rule, the exclusion regex on real title shapes, and normalises the live-captured * fixtures in data/fixtures/kanzen-games/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants). */ describeShopifyStore(meta, createConnector, { describe, it, expect }, { "cases": [ { "title": "PSA 10 - Mew - Dream Shine Collection - #017 - 74542930 - Japanese", "productType": "Graded Slab", "collection": "slabs", "categorySlug": "pokemon" }, { "title": "PSA 9 - Monkey D. Luffy - One Piece Romance Dawn - #OP01-003", "collection": "slabs", "categorySlug": "one_piece_card_game" }, { "title": "Dragon Shield Sleeve - Brushed Art", "collection": "magic-the-gathering", "categorySlug": null } ] });