export declare const buttonTestCode = "\n/**\n * @jest-environment jsdom\n */\nimport { render, screen } from '@testing-library/react';\nimport '@testing-library/jest-dom';\nimport { Button } from './components/Button';\nimport React from 'react';\n\ntest('loads and displays Hello', async () => {\n  // ARRANGE\n  render(<Button label=\"Hello\" />);\n\n  // ACT\n  await screen.findByRole('button');\n\n  // ASSERT\n  expect(screen.getByRole('button')).toHaveTextContent('Hello');\n});\n";
