Amber Shopify Project created using ReactJS+React-Redux with GraphQL API integration. Storefront Shopify API: https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/storefront-api-client#readme
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

App.test.js 246B

12345678
  1. import { render, screen } from '@testing-library/react';
  2. import App from './App';
  3. test('renders learn react link', () => {
  4. render(<App />);
  5. const linkElement = screen.getByText(/learn react/i);
  6. expect(linkElement).toBeInTheDocument();
  7. });