Merge pull request #35 from MillenniumEarl/deepsource-fix-dc58783a

Replace variables with const
pull/36/head
Millennium Earl 2020-10-21 15:35:15 +02:00 committed by GitHub
commit 1cdbafb4cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -503,13 +503,13 @@ async function loginF95(browser, username, password) {
let message = "";
// Check if the user is logged in
let success = await page.evaluate(
const success = await page.evaluate(
/* istanbul ignore next */ (selector) =>
document.querySelector(selector) !== null,
selectorK.AVATAR_INFO
);
let errorMessageExists = await page.evaluate(
const errorMessageExists = await page.evaluate(
/* istanbul ignore next */
(selector) => document.querySelector(selector) !== null,
selectorK.LOGIN_MESSAGE_ERROR

View File

@ -52,7 +52,7 @@ module.exports.urlExists = async function (url, checkRedirect) {
if (!valid) return false;
if (checkRedirect) {
let redirectUrl = await exports.getUrlRedirect(url);
const redirectUrl = await exports.getUrlRedirect(url);
if (redirectUrl === url) valid = true;
else valid = false;
}

View File

@ -172,8 +172,8 @@ describe("Search game data", function () {
expect(result, "Without being logged should return null").to.be.null;
});
it("Test game serialization", function () {
let json = JSON.stringify(testGame);
let parsedGameInfo = JSON.parse(json);
const json = JSON.stringify(testGame);
const parsedGameInfo = JSON.parse(json);
expect(parsedGameInfo).to.be.equal(testGame);
});
});