AdMob not displaying TEST banner iOS

So I’m using the cordova-plugin-admobpro https://ionicframework.com/docs/native/admob/ and I have a blank white banner even if I set isTesting: true, so It should at least display a test banner, it does that on Android, but on ios is just a white blank banner.

  loadAd(){
    
    let options = {};

    if (/(android)/i.test(navigator.userAgent)) {
      let options = {
        adId: 'ca-app-pub-9002872999358xxx/3701663xxx',
        isTesting: false,
        position : AdMob.AD_POSITION.BOTTOM_CENTER,
        autoShow : true,
        adExtras : {color_bg : '#eff2f4'}
      };
    } else if(/(ipod|iphone|ipad)/i.test(navigator.userAgent)) {
      let options = {
        adId: 'ca-app-pub-90028729993xxxx5/xx14005xxx',
        isTesting: true,
        position : AdMob.AD_POSITION.BOTTOM_CENTER,
        autoShow : false,
        adExtras : {color_bg : '#eff2f4'}
      };
    }
  
    AdMob.createBanner(options).then(() => {
      AdMob.showBanner(AdMob.AD_POSITION.BOTTOM_CENTER);
    });
    
  }

  ionViewDidLoad() {

    this.platform.ready().then(() => {
      
      if (this.platform.is('cordova')) {
        this.loadAd();
      }

On Xcode I get this:

AdMob, onAdFailLoad, {‘adNetwork’:‘AdMob’,‘adType’:‘banner’,‘adEvent’:‘onAdFailLoad’,‘error’:1,‘reason’:‘Request Error: No ad to show.’}
2017-04-29 11:28:25.079575[40029:6283276] Unable to connect to FCM. Error Domain=com.google.fcm Code=2001 “(null)”

Any help on solving this? maybe more debugging tips.

Same problem here. works banner and interstitial on andorid.
on ios no loads and same error.

Have you resolved?

my code
admobid: any;

constructor(public navCtrl: NavController,public alertCtrl: AlertController, private admob: AdMob, private platform: Platform) {

 if(this.platform.is('android')) { // for Android

      this.admobid = {
      banner : 'ca-app-pub-xxx',  
      interstitial: 'ca-app-pub-xxx'
      }

   } else if (this.platform.is('ios')) {// for iOS
  
      this.admobid = {
      banner : 'ca-app-pub-xxx',  
      interstitial: 'ca-app-pub-xxx'
      }
  } 

  this.admob.createBanner({
    adId: this.admobid.banner,
    isTesting: true, //comment this out before publishing the app
    autoShow: false
  })

  this.admob.prepareInterstitial({
                adId: this.admobid.interstitial,
                isTesting: true, //comment this out before publishing the app
                autoShow: false
              })
            
/

}

show(){

      if (this.admob)
      { 

        
         this.admob.showInterstitial();


         this.showAlert();
       
      }
    }

show2(){
if (this.admob)
{
//this.admob.showInterstitial();
this.admob.showBanner(this.admob.AD_POSITION.BOTTOM_CENTER);
}
}

hi did you ever get this issue resolved