shopify-testing
Installation
SKILL.md
Shopify Testing
Before writing code
Fetch live docs:
- Web-search
site:shopify.dev testing appsfor app testing patterns - Web-search
site:shopify.dev theme checkfor theme linting - Web-search
site:shopify.dev shopify functions testingfor function testing
App Testing
Unit Tests (Vitest)
The Remix template uses Vitest:
// tests/routes/app._index.test.tsx
import { describe, it, expect, vi } from 'vitest';
import { loader } from '~/routes/app._index';