From a9e2ff7792379d5423a05880f1c3108c7981d063 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Mon, 11 Aug 2025 10:18:46 +0200 Subject: [PATCH] e2e-test: update deprecated usage Signed-off-by: Patrik Oldsberg --- packages/e2e-test/src/commands/run.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/e2e-test/src/commands/run.ts b/packages/e2e-test/src/commands/run.ts index c95b8294c7..796bd43fb0 100644 --- a/packages/e2e-test/src/commands/run.ts +++ b/packages/e2e-test/src/commands/run.ts @@ -61,7 +61,7 @@ export async function run(opts: OptionValues) { print('Creating a Backstage Plugin'); const pluginId = 'test'; - await createPlugin({ appDir, pluginId, select: 'plugin' }); + await createPlugin({ appDir, pluginId, select: 'frontend-plugin' }); print('Creating a Backstage Backend Plugin'); await createPlugin({ appDir, pluginId, select: 'backend-plugin' }); @@ -379,7 +379,7 @@ async function createPlugin(options: { }) { const { appDir, pluginId, select } = options; const child = spawnPiped( - ['yarn', 'new', '--select', select, '--option', `id=${pluginId}`], + ['yarn', 'new', '--select', select, '--option', `pluginId=${pluginId}`], { cwd: appDir, },