Mark Fulton

Results 136 comments of Mark Fulton

``` kotlin if (testPassed) sauceREST.jobPassed(jobId) else sauceREST.jobFailed(jobId) ``` hmmmm, now that I write it out I wonder if an inline function to wrap my `assertions` would be better. e.g.: ```...

With TestNG I would do this with an `AfterMethod` and/or `ITestListener` to "extend" the framework. That way I can run my tests independent of a build process. Not all tests/specifications...

And yes, when running Sauce Labs tests you have to have access to its REST API in order to run tests as well as update their statuses.

@baztian , @leedsrising I have found that setting JVM arg `-Duser.timezone=UTC` allows me to get data back in UTC. From what I can tell jaydebeapi does not currently support the...

@leedsrising I did find an alternative. You can take a look at how jaydebeapi starts the JVM and then just start it yourself passing in whatever args you need (e.g....

For anyone else that stumbles upon this issue and may be having a hard time understanding HATEOAS I came across the following article that I found useful: https://spring.io/understanding/HATEOAS.

I can ask this elsewhere instead (e.g. https://github.com/graphql/graphql-js/discussions) but I was thinking that some documentation for this might be helpful as authorization handled in the business layer makes perfect sense...

I'm seeing this error response for `people.set` (`/engage` endpoint)

Although `caches` was introduced with service workers it is available on the `window` object similar to `indexedDb`. https://developer.mozilla.org/en-US/docs/Web/API/Window