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,8 +1,5 @@
const helpers = require("./global-setup");
describe("Position of modules", function () {
helpers.setupTimeout(this);
@@ -31,7 +28,7 @@ describe("Position of modules", function () {
const className = position.replace("_", ".");
it("should show text in " + position, function () {
return app.client.$("." + className).then((result) => {
return (result.getText("." + className) === "Text in " + position);
return result.getText("." + className) === "Text in " + position;
});
});
}