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
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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