From 11fbf584a8950bfc76e44d853302c5ab78ba9260 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 4 Oct 2024 12:32:48 +0200 Subject: [PATCH] update test names --- tests/components/ct-vue-vite/tests/slots/slots.spec.js | 2 +- tests/components/ct-vue-vite/tests/slots/slots.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/ct-vue-vite/tests/slots/slots.spec.js b/tests/components/ct-vue-vite/tests/slots/slots.spec.js index bd28820672..a91199cf78 100644 --- a/tests/components/ct-vue-vite/tests/slots/slots.spec.js +++ b/tests/components/ct-vue-vite/tests/slots/slots.spec.js @@ -52,7 +52,7 @@ test('render a component with a named slot', async ({ mount }) => { }); -test('updating slot should work', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32809' } }, async ({ mount }) => { +test('updating default slot should work', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32809' } }, async ({ mount }) => { const slots = { default: 'foo' }; const component = await mount(SlotDefaultValue, { slots }); diff --git a/tests/components/ct-vue-vite/tests/slots/slots.spec.ts b/tests/components/ct-vue-vite/tests/slots/slots.spec.ts index d847da5552..7d36d9733b 100644 --- a/tests/components/ct-vue-vite/tests/slots/slots.spec.ts +++ b/tests/components/ct-vue-vite/tests/slots/slots.spec.ts @@ -51,7 +51,7 @@ test('render a component with a named slot', async ({ mount }) => { await expect(component).toContainText('Footer'); }); -test('updating slot should work', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32809' } }, async ({ mount }) => { +test('updating default slot should work', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32809' } }, async ({ mount }) => { const slots = { default: 'foo' }; const component = await mount(SlotDefaultValue, { slots });