12345678910 |
- import App from '../src/App.svelte'
- import { render, cleanup } from '@testing-library/svelte'
- beforeEach(cleanup)
- describe('App', () => {
- test('should render greeting', () => {
- const { getByText } = render(App, { props: {} })
- expect(getByText('Hello world!'))
- })
- })
|