Simple monitor for displaying MIDI status for digital pianos.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

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