Why can't step into promise success handling logic

2023-12-18T07:34:10.1966667+00:00

I follow this sample [https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/tab-external-auth

](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/tab-external-auth

), development my own Tab web application's external-auth, I can popup login page, but after login, I can't step into this code segment

authentication.authenticate({
      url: ``,
      isExternal: true
    }).then((result) => {
      //can't step into here
    }).catch((reason) => {
      console.log("failed" + reason);
      reject(reason);
    })
Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
10,895 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
3,708 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.