Fixes #123083: Localization: starts with 'DE' locale and verifies title and viewlets text is in German

This commit is contained in:
Dirk Baeumer 2021-05-10 13:57:43 +02:00
parent 27fe7f9dfb
commit 2fc3214ba4
No known key found for this signature in database
GPG key ID: DD95715335E91385

View file

@ -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;
}