From 49ad6896cdde85b2aa658e2cd5c84332abb8093d Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 21 Oct 2020 20:36:13 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in 22bd796 according to the output from prettier. Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/57cbbdf9-5bee-4d10-9216-671d1f284622/ --- app/scripts/game-scraper.js | 2 +- test/index-test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scripts/game-scraper.js b/app/scripts/game-scraper.js index 7796307..0c11be6 100644 --- a/app/scripts/game-scraper.js +++ b/app/scripts/game-scraper.js @@ -203,7 +203,7 @@ async function getGamePreviewSource(page) { } catch { return null; } - + const src = await page.evaluate( /* istanbul ignore next */ (selector) => { diff --git a/test/index-test.js b/test/index-test.js index 06ab5cf..4d89e73 100644 --- a/test/index-test.js +++ b/test/index-test.js @@ -4,7 +4,7 @@ const fs = require("fs"); // Public modules from npm -const _ = require('lodash'); +const _ = require("lodash"); const expect = require("chai").expect; const sleep = require("sleep"); const dotenv = require("dotenv");