test.app.js 279 B

12345678910
  1. import App from '../src/App.svelte'
  2. import { render, cleanup } from '@testing-library/svelte'
  3. beforeEach(cleanup)
  4. describe('App', () => {
  5. test('should render greeting', () => {
  6. const { getByText } = render(App, { props: {} })
  7. expect(getByText('Hello world!'))
  8. })
  9. })