: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
import Fetcher from './utils/fetcher';
delayTimeOnFailure = 5000;
return new Promise( ( resolve, reject ) => {
this.startTest().then( ( res ) => {
this.getResult( resolve, reject, reject );
}, this.delayTimeOnFailure );
} ).catch( ( error ) => {
return Fetcher.background.backgroundHealthyCheck();
getResult( successCallback, failedCallback, errorCallback ) {
return this.fetchResult().then( ( status ) => {
if (status?.success && data?.loopback) {
} ).catch( ( error ) => {
return Fetcher.background.backgroundHealthyStatus();
export default ( new LoopbackTester() );