diff --git a/tests/components/ct-react-vite/src/tests.spec.tsx b/tests/components/ct-react-vite/src/tests.spec.tsx
index 22e28a73ab..9542bec7a8 100644
--- a/tests/components/ct-react-vite/src/tests.spec.tsx
+++ b/tests/components/ct-react-vite/src/tests.spec.tsx
@@ -19,7 +19,7 @@ test('render attributes', async ({ mount }) => {
await expect(component).toHaveClass('primary');
});
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount()
await expect(component.locator('#props')).toContainText('9001')
@@ -30,7 +30,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates callbacks without remounting', async ({ mount }) => {
+test('update callbacks without remounting', async ({ mount }) => {
const component = await mount()
const messages: string[] = []
@@ -43,7 +43,7 @@ test('renderer updates callbacks without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Default Slot)
await expect(component).toContainText('Default Slot')
diff --git a/tests/components/ct-react/src/tests.spec.tsx b/tests/components/ct-react/src/tests.spec.tsx
index a74c5b7133..b1722bedde 100644
--- a/tests/components/ct-react/src/tests.spec.tsx
+++ b/tests/components/ct-react/src/tests.spec.tsx
@@ -22,7 +22,7 @@ test('render attributes', async ({ mount }) => {
await expect(component).toHaveClass('primary');
})
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount()
await expect(component.locator('#props')).toContainText('9001')
@@ -33,7 +33,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
});
-test('renderer updates callbacks without remounting', async ({ mount }) => {
+test('update callbacks without remounting', async ({ mount }) => {
const component = await mount()
const messages: string[] = []
@@ -46,7 +46,7 @@ test('renderer updates callbacks without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
});
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Default Slot)
await expect(component).toContainText('Default Slot')
diff --git a/tests/components/ct-solid/src/tests.spec.tsx b/tests/components/ct-solid/src/tests.spec.tsx
index f1b03033be..01cbc66a7a 100644
--- a/tests/components/ct-solid/src/tests.spec.tsx
+++ b/tests/components/ct-solid/src/tests.spec.tsx
@@ -19,7 +19,7 @@ test('render attributes', async ({ mount }) => {
await expect(component).toHaveClass('primary');
});
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount()
await expect(component.getByTestId('props')).toContainText('9001')
@@ -34,7 +34,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.getByTestId('remount-count')).toContainText('2')
});
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Default Slot)
await expect(component).toContainText('Default Slot')
@@ -49,7 +49,7 @@ test('renderer updates slots without remounting', async ({ mount }) => {
await expect(component.getByTestId('remount-count')).toContainText('2')
});
-test('renderer updates callbacks without remounting', async ({ mount }) => {
+test('update callbacks without remounting', async ({ mount }) => {
const component = await mount()
const messages: string[] = []
diff --git a/tests/components/ct-svelte-vite/src/tests.spec.ts b/tests/components/ct-svelte-vite/src/tests.spec.ts
index 6ebcc4ee03..12b58506c8 100644
--- a/tests/components/ct-svelte-vite/src/tests.spec.ts
+++ b/tests/components/ct-svelte-vite/src/tests.spec.ts
@@ -34,7 +34,7 @@ test('render props', async ({ mount }) => {
await expect(component).toContainText('Submit')
})
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount(Counter, {
props: { count: 9001 }
})
@@ -49,7 +49,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates event listeners without remounting', async ({ mount }) => {
+test('update event listeners without remounting', async ({ mount }) => {
const component = await mount(Counter)
const messages: string[] = []
diff --git a/tests/components/ct-svelte/src/tests.spec.ts b/tests/components/ct-svelte/src/tests.spec.ts
index 576b5c2acf..91db6f0f73 100644
--- a/tests/components/ct-svelte/src/tests.spec.ts
+++ b/tests/components/ct-svelte/src/tests.spec.ts
@@ -35,7 +35,7 @@ test('render props', async ({ mount }) => {
await expect(component).toContainText('Submit')
})
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount(Counter, {
props: { count: 9001 }
})
@@ -50,7 +50,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates event listeners without remounting', async ({ mount }) => {
+test('update event listeners without remounting', async ({ mount }) => {
const component = await mount(Counter)
const messages: string[] = []
diff --git a/tests/components/ct-vue-vite/src/notation-jsx.spec.tsx b/tests/components/ct-vue-vite/src/notation-jsx.spec.tsx
index 0ad4d8bc48..dd2db996ae 100644
--- a/tests/components/ct-vue-vite/src/notation-jsx.spec.tsx
+++ b/tests/components/ct-vue-vite/src/notation-jsx.spec.tsx
@@ -19,7 +19,7 @@ test('render attributes', async ({ mount }) => {
await expect(component).toHaveClass('primary');
});
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount()
await expect(component.locator('#props')).toContainText('9001')
@@ -30,7 +30,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates event listeners without remounting', async ({ mount }) => {
+test('update event listeners without remounting', async ({ mount }) => {
const component = await mount()
const messages: string[] = []
@@ -43,7 +43,7 @@ test('renderer updates event listeners without remounting', async ({ mount }) =>
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Default Slot)
await expect(component).toContainText('Default Slot')
diff --git a/tests/components/ct-vue-vite/src/notation-vue.spec.js b/tests/components/ct-vue-vite/src/notation-vue.spec.js
index 316635c478..fa5a1a51ce 100644
--- a/tests/components/ct-vue-vite/src/notation-vue.spec.js
+++ b/tests/components/ct-vue-vite/src/notation-vue.spec.js
@@ -19,7 +19,7 @@ test('render props', async ({ mount }) => {
})
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount(Counter, {
props: { count: 9001 }
})
@@ -34,7 +34,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates event listeners without remounting', async ({ mount }) => {
+test('update event listeners without remounting', async ({ mount }) => {
const component = await mount(Counter)
const messages = []
@@ -49,7 +49,7 @@ test('renderer updates event listeners without remounting', async ({ mount }) =>
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Counter, {
slots: { default: 'Default Slot' }
})
diff --git a/tests/components/ct-vue-vite/src/notation-vue.spec.ts b/tests/components/ct-vue-vite/src/notation-vue.spec.ts
index 18a833ca7f..e3c7a82890 100644
--- a/tests/components/ct-vue-vite/src/notation-vue.spec.ts
+++ b/tests/components/ct-vue-vite/src/notation-vue.spec.ts
@@ -20,7 +20,7 @@ test('render props', async ({ mount }) => {
await expect(component).toContainText('Submit')
})
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount(Counter, {
props: { count: 9001 }
})
@@ -35,7 +35,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates event listeners without remounting', async ({ mount }) => {
+test('update event listeners without remounting', async ({ mount }) => {
const component = await mount(Counter)
const messages: string[] = []
@@ -50,7 +50,7 @@ test('renderer updates event listeners without remounting', async ({ mount }) =>
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Counter, {
slots: { default: 'Default Slot' }
})
diff --git a/tests/components/ct-vue2-cli/src/notation-jsx.spec.tsx b/tests/components/ct-vue2-cli/src/notation-jsx.spec.tsx
index a3819fcd0e..aee2b7e994 100644
--- a/tests/components/ct-vue2-cli/src/notation-jsx.spec.tsx
+++ b/tests/components/ct-vue2-cli/src/notation-jsx.spec.tsx
@@ -18,7 +18,7 @@ test('render attributes', async ({ mount }) => {
await expect(component).toHaveClass('primary');
});
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount()
await expect(component.locator('#props')).toContainText('9001')
@@ -29,7 +29,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates event listeners without remounting', async ({ mount }) => {
+test('update event listeners without remounting', async ({ mount }) => {
const messages: string[] = []
const component = await mount()
@@ -44,7 +44,7 @@ test('renderer updates event listeners without remounting', async ({ mount }) =>
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Default Slot)
await expect(component).toContainText('Default Slot')
diff --git a/tests/components/ct-vue2-cli/src/notation-vue.spec.ts b/tests/components/ct-vue2-cli/src/notation-vue.spec.ts
index 515399be8a..4e53f1b366 100644
--- a/tests/components/ct-vue2-cli/src/notation-vue.spec.ts
+++ b/tests/components/ct-vue2-cli/src/notation-vue.spec.ts
@@ -18,7 +18,7 @@ test('render props', async ({ mount }) => {
await expect(component).toContainText('Submit')
})
-test('renderer updates props without remounting', async ({ mount }) => {
+test('update props without remounting', async ({ mount }) => {
const component = await mount(Counter, {
props: { count: 9001 }
})
@@ -33,7 +33,7 @@ test('renderer updates props without remounting', async ({ mount }) => {
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates event listeners without remounting', async ({ mount }) => {
+test('update event listeners without remounting', async ({ mount }) => {
const component = await mount(Counter)
const messages: string[] = []
@@ -48,7 +48,7 @@ test('renderer updates event listeners without remounting', async ({ mount }) =>
await expect(component.locator('#remount-count')).toContainText('1')
})
-test('renderer updates slots without remounting', async ({ mount }) => {
+test('update slots without remounting', async ({ mount }) => {
const component = await mount(Counter, {
slots: { default: 'Default Slot' }
})