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
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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. });