Simple monitor for displaying MIDI status for digital pianos.
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ů.
 
 
 
 

10 řádky
280 B

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