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.4 KB · 42 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 * Colonial Acres Coins — 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/colonial-acres/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12  "cases": [13    {14      "title": "BC-1 1935 Canada $1 Osborne-Towers, English, Series A, Fine (F12)",15      "productType": "Paper Money",16      "collection": "1-notes-1935-1937",17      "categorySlug": "banknotes"18    },19    {20      "title": "1858 Broken Stem Canada 1-cent ICCS Certified VG10",21      "productType": "ICCS",22      "collection": "1-cent",23      "categorySlug": "coins"24    },25    {26      "title": "Canada 1-cent Roll (50 pcs) 1967",27      "collection": "1-cent",28      "categorySlug": null29    },30    {31      "title": "Coin Capsule 19mm - 10 pack",32      "collection": "1-cent",33      "categorySlug": null34    },35    {36      "title": "1820 Lower Canada Bust & Harp Token",37      "collection": "lower-canada",38      "categorySlug": "coins"39    }40  ]41});42