import { expect, test } from 'vitest' import { render, screen } from '@testing-library/react' import { App } from './AppWithHooks'; test('AppWithHooks rendered correctly', async () => { render() const h2 = await screen.findByTestId('heading') expect(h2.textContent).toEqual('Welcome to Liquid (hooks)') })