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 * Toy Snowman — 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/toy-snowman/ (runFixtureSuite invariants + CAD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "Star Wars - Darth Vader (Battle Damaged) Deluxe 1/6th Scale Collectible Figure - DX45",15 "productType": "Collectables > Action Figures > toys",16 "collection": "star-wars-the-black-series",17 "categorySlug": "action_figures",18 "franchise": "Star Wars"19 },20 {21 "title": "Citadel Colour Layer Paint - Ushabti Bone",22 "collection": "warhammer-40k",23 "categorySlug": null24 },25 {26 "title": "Codex: Space Marines (10th Edition)",27 "collection": "warhammer-40k",28 "categorySlug": null29 }30 ]31});32