Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed May 15, 2022
1 parent 4e4ae97 commit 7c7bddc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/e2e/entry.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ const HOT_ENABLED_MESSAGE =
const waitForConsoleLogFinished = async (consoleLogs) => {
await new Promise((resolve) => {
const interval = setInterval(() => {
if (
consoleLogs.includes(HOT_ENABLED_MESSAGE)
) {
if (consoleLogs.includes(HOT_ENABLED_MESSAGE)) {
clearInterval(interval);

resolve();
Expand Down

0 comments on commit 7c7bddc

Please sign in to comment.