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 * Canadian Coin & Currency — 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/cdncoin/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "$1 1935 Dbl XXV; Dbl Voyageur ICCS MS-65",15 "productType": "Canadian Decimal Coins",16 "collection": "certified",17 "categorySlug": "coins"18 },19 {20 "title": "$20 1954 Bank of Canada Beattie-Coyne PMG 65 EPQ",21 "productType": "Canadian Paper Money",22 "collection": "certified",23 "categorySlug": "banknotes"24 },25 {26 "title": "Lighthouse Coin Album Canada Cents",27 "collection": "canadian-collections",28 "categorySlug": null29 }30 ]31});32