Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Eliminate yarn test spam #1024

Merged
merged 13 commits into from
Apr 3, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
remove "Network status set to (true|false)" message
This was originally added in a bid to track down a now resolved issue,
and thus is no longer needed.
  • Loading branch information
lieut-data committed Mar 28, 2018
commit 36049788b053e7649897fd4a57ac53ffb6c4e362
1 change: 0 additions & 1 deletion utils/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const MIN_NETWORK_RETRY_TIME = 3000; // 3 sec
const MAX_NETWORK_RETRY_TIME = 300000; // 5 mins

function handle(callback, online) {
console.log('Network status set to ' + online); //eslint-disable-line no-console
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Checked with author: no longer needed.

if (window.requestAnimationFrame) {
window.requestAnimationFrame(() => callback(online));
} else {
Expand Down