From 4e475887736d4710bf03a6a370696e3a79ca483f Mon Sep 17 00:00:00 2001 From: Francesco Bigiarini Date: Mon, 2 Dec 2024 12:52:49 +0100 Subject: [PATCH 1/2] Update blueprint.json Replace Create Block Theme plugin step with shortcut. --- blueprints/theme-a11y-test/blueprint.json | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/blueprints/theme-a11y-test/blueprint.json b/blueprints/theme-a11y-test/blueprint.json index 69a069b..7a4bb7f 100644 --- a/blueprints/theme-a11y-test/blueprint.json +++ b/blueprints/theme-a11y-test/blueprint.json @@ -13,6 +13,9 @@ "features": { "networking": true }, + "plugins": [ + "create-block-theme" + ] "steps": [ { "step": "login" @@ -31,16 +34,6 @@ "url": "https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml" } }, - { - "step": "installPlugin", - "pluginZipFile": { - "resource": "wordpress.org/plugins", - "slug": "create-block-theme" - }, - "progress": { - "weight": 2 - } - }, { "step": "installTheme", "themeZipFile": { From b49cb9f00e7016f04f6976d02bae666b0d408723 Mon Sep 17 00:00:00 2001 From: Francesco Bigiarini Date: Mon, 23 Dec 2024 21:43:51 +0100 Subject: [PATCH 2/2] Fix: missing comma --- blueprints/theme-a11y-test/blueprint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/theme-a11y-test/blueprint.json b/blueprints/theme-a11y-test/blueprint.json index 7a4bb7f..77d4873 100644 --- a/blueprints/theme-a11y-test/blueprint.json +++ b/blueprints/theme-a11y-test/blueprint.json @@ -15,7 +15,7 @@ }, "plugins": [ "create-block-theme" - ] + ], "steps": [ { "step": "login"