rename repl + fix eval for spread op

This commit is contained in:
Felix Roos 2022-03-25 20:48:27 +01:00
parent 2338a1ee7d
commit e2eea91261
34 changed files with 332 additions and 183 deletions

8
repl/src/App.test.js Normal file
View file

@ -0,0 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});