Badisi

Results 117 comments of Badisi

The thing is, I was never able to make `toBeRequestedWith` work... Even this simple exemple doesn't work: ```ts const url = 'http://localhost:4200'; const mock = browser.mock(url); await browser.url(url); await expect(mock).toBeRequestedWith({...

**wdio version**: v7.16.10 spec ```ts describe('Test', () => { it('test', async () => { const url = 'http://localhost:4200'; const mock = browser.mock(url); await browser.url(url); await expect(mock).toBeRequestedWith({ url }); }); });...

Yes, to temporarily work around this you can add notes manually: (see the doc [here](https://semantic-release.gitbook.io/semantic-release/support/troubleshooting#release-not-found-release-branch-after-git-push-force)) ```sh # example git notes --ref semantic-release add -f -m '{"channels":["beta"]}' v2.0.0-beta.1 git push --force...

@aleclarson, this is exactly the documentation I was referring to in the description of this issue. This doc is incomplete as SR will also look for a `git note` (see...

You cannot change things on the fly, you will have to reinstantiate your `UserManager`. And if like you said, you need to instantiate anything once when the app loads, then...

I'm not familiar with the `react` wrapper but I can see that it works exactly the same as `oidc-client-ts`: you need to instantiate it with some config. So my solution...

I don't think it's a good idea to save the whole setting object anyway. You should save only what you are giving to `oidc-client-ts` at the first place (especially if...

@kodeschooler, note that the idea about using the storage was just to answer the question **"Ability to apply different configuration values at run-time"**. If your issue is only about changing...

@Alino, an expired `refresh_token` doesn't mean the `user's session` has expired too. You don't necessarily have to re-log in. ### What the blue box means: Usually the flow of ODIC...

Another solution, would be to use the `refresh token rotation` (ie. when your application exchanges a `refresh token` to get a new `access token` (9), a new `refresh token` is...