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 * Capsule Toronto — 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/capsule-toronto/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "probeType": "Footwear",13 "cases": [14 {15 "title": "Air Jordan 1 Low SE BLACK/TOUR YELLOW IX3529-010",16 "productType": "Footwear",17 "collection": "footwear",18 "categorySlug": "nike_jordan"19 },20 {21 "title": "New Balance 990v6 GREY M990GL6",22 "productType": "Footwear",23 "collection": "footwear",24 "categorySlug": "new_balance_asics_other"25 },26 {27 "title": "Nike Women's Air Max 1 '87 SAIL/BLACK DD9702-100",28 "productType": "Women's Footwear",29 "collection": "womens-footwear",30 "categorySlug": "nike_jordan"31 },32 {33 "title": "Nike ACG Wolf Tree Polartec Fleece",34 "productType": "Sweaters",35 "collection": "nike",36 "categorySlug": null37 }38 ]39});40