From 2fc3214ba42050459096e5731513833efd4ac270 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Mon, 10 May 2021 13:57:43 +0200 Subject: [PATCH] Fixes #123083: Localization: starts with 'DE' locale and verifies title and viewlets text is in German --- test/smoke/src/areas/workbench/localization.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/smoke/src/areas/workbench/localization.test.ts b/test/smoke/src/areas/workbench/localization.test.ts index 1101625ba3e..6ffd530f088 100644 --- a/test/smoke/src/areas/workbench/localization.test.ts +++ b/test/smoke/src/areas/workbench/localization.test.ts @@ -10,7 +10,8 @@ export function setup() { before(async function () { const app = this.app as Application; - if (app.quality === Quality.Dev) { + // Don't run the localization tests in dev or remote. + if (app.quality === Quality.Dev || app.remote) { return; } @@ -23,7 +24,7 @@ export function setup() { it(`starts with 'DE' locale and verifies title and viewlets text is in German`, async function () { const app = this.app as Application; - if (app.quality === Quality.Dev) { + if (app.quality === Quality.Dev || app.remote) { this.skip(); return; }