diff --git a/tests/components/ct-react-vite/src/tests.spec.tsx b/tests/components/ct-react-vite/src/tests.spec.tsx
index 5895ec7c57..99b46d5780 100644
--- a/tests/components/ct-react-vite/src/tests.spec.tsx
+++ b/tests/components/ct-react-vite/src/tests.spec.tsx
@@ -7,7 +7,7 @@ import Counter from './components/Counter';
test.use({ viewport: { width: 500, height: 500 } });
-test('props should work', async ({ mount }) => {
+test('render props', async ({ mount }) => {
const component = await mount();
await expect(component).toContainText('Submit');
});
@@ -47,7 +47,7 @@ test('renderer updates slots without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('callback should work', async ({ mount }) => {
+test('execute callback when the button is clicked', async ({ mount }) => {
const messages: string[] = []
const component = await mount(