update test names
This commit is contained in:
parent
7ea87094e8
commit
11fbf584a8
|
|
@ -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 slots = { default: 'foo' };
|
||||||
|
|
||||||
const component = await mount(SlotDefaultValue, { slots });
|
const component = await mount(SlotDefaultValue, { slots });
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ test('render a component with a named slot', async ({ mount }) => {
|
||||||
await expect(component).toContainText('Footer');
|
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 slots = { default: 'foo' };
|
||||||
|
|
||||||
const component = await mount(SlotDefaultValue, { slots });
|
const component = await mount(SlotDefaultValue, { slots });
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue