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 * Super7 — 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/super7/ (runFixtureSuite invariants + USD currency, seller, SKUs, ended variants).10 */11describeShopifyStore(meta, createConnector, { describe, it, expect }, {12 "cases": [13 {14 "title": "G.I. Joe ReAction+ Figures - Snake Eyes (Skybound Comic Box Series, Issue #2)",15 "productType": "Figures",16 "collection": "movie-action-figures",17 "categorySlug": "action_figures",18 "brand": "Super7"19 },20 {21 "title": "Godzilla Kandy Kaiju Soft Vinyl - Clear Blue",22 "productType": "Figures",23 "collection": "godzilla",24 "categorySlug": "designer_toys",25 "franchise": "Godzilla"26 },27 {28 "title": "Godzilla Skate T-Shirt - Black",29 "productType": "Apparel",30 "collection": "godzilla",31 "categorySlug": null32 }33 ]34});35