1
chrome.identity.getAuthToken({interactive: true}, function (token :any) {

var url = 'http://"
   //the code goes here

});

getAuthToken 関数内のコードをカバーできません。私の仕様では、次の方法で getAuthToken をモックしました。

chrome = {
      notifications: {
        clear: function(){}
      },
      identity: {
          getAuthToken: function() {
          }
        },
      storage: {
        local: {
          remove: function() {
          },
          get: function() {
          },
          clear: function() {
          }
        }
      }

getAuthToken 関数をカバーする方法を教えてください。前もって感謝します!

4

0 に答える 0