()
| 93 | } |
| 94 | |
| 95 | function removeUser() { |
| 96 | mgr.removeUser().then(function() { |
| 97 | log("user removed"); |
| 98 | }).catch(function(err) { |
| 99 | console.error(err); |
| 100 | log(err); |
| 101 | }); |
| 102 | } |
| 103 | |
| 104 | function startSigninMainWindow() { |
| 105 | mgr.signinRedirect({ state: { some: "data" } }).then(function() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…