SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
1.1 KB · 31 lines typescript
Raw Blame History
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 * KanZen 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/kanzen-games/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12  "cases": [13    {14      "title": "PSA 10 - Mew - Dream Shine Collection - #017 - 74542930 - Japanese",15      "productType": "Graded Slab",16      "collection": "slabs",17      "categorySlug": "pokemon"18    },19    {20      "title": "PSA 9 - Monkey D. Luffy - One Piece Romance Dawn - #OP01-003",21      "collection": "slabs",22      "categorySlug": "one_piece_card_game"23    },24    {25      "title": "Dragon Shield Sleeve - Brushed Art",26      "collection": "magic-the-gathering",27      "categorySlug": null28    }29  ]30});31