From d34b493b7d84d7909e55a153cde0cde79eeb360c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?= Date: Sat, 5 Aug 2017 22:30:38 -0400 Subject: [PATCH] Fix clock_es_spec running before the clock_spec --- tests/e2e/modules/clock_es_spec.js | 9 --------- 1 file changed, 9 deletions(-) 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()