diff --git a/tests/e2e/modules/clock_es_spec.js b/tests/e2e/modules/clock_es_spec.js index f959e09b..455f3bed 100644 --- a/tests/e2e/modules/clock_es_spec.js +++ b/tests/e2e/modules/clock_es_spec.js @@ -74,21 +74,12 @@ describe("Clock set to spanish language module", function() { }); }); - describe("with showWeek config enabled", function() { before(function() { // Set config sample for use in test process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_showWeek.js"; }); - beforeEach(function (done) { - app.start().then(function() { done(); } ); - }); - - afterEach(function (done) { - app.stop().then(function() { done(); }); - }); - it("shows week with correct format", function() { const weekRegex = /^Semana [0-9]{1,2}$/; return app.client.waitUntilWindowLoaded()