run prettier

This commit is contained in:
karsten13
2021-06-11 22:24:21 +02:00
parent 044935a164
commit 1a244726aa
21 changed files with 41 additions and 85 deletions

View File

@@ -1,11 +1,6 @@
const helpers = require("../global-setup");
const moment = require("moment");
describe("Clock module", function () {
helpers.setupTimeout(this);
@@ -105,7 +100,7 @@ describe("Clock module", function () {
const currentWeekNumber = moment().week();
const weekToShow = "Week " + currentWeekNumber;
const elem = await app.client.$(".clock .week");
return (elem.getText(".clock .week") === weekToShow);
return elem.getText(".clock .week") === weekToShow;
});
});