Results 15 comments of Guy Mograbi

@sgravrock thanks for the reply. My project would like to add A/B testing on some features and the decision about some tests is that they will be able to handle...

@slackersoft Thanks for the reply. I understand your considerations. Perhaps there is a way to access the matchers without `expect`? Basically any way that would allow me to reuse a...

@ehacke I don't think it's weird it is only after you added X amount of tests etc. sounds like an async process is going on. fast network would increases chances...

@DudaGod I don't know the URL. I will know it after an async operation. for example ```javascript BookStore.createBook().then( (book) => { const url = `http://some.url/books/${book.id}` .... }) ```

This is more or less what I am doing now, but this does not work with grep and other features in Gemini. Every time I run gemini, all the mock...

Why is this still open? Please see references to code example at: https://github.com/gemini-testing/gemini/issues/740 copied snippet here ``` browsers: { chrome: { desiredCapabilities: { compositeImage: true, screenshotMode: 'fullpage', browserName: 'chrome' },...

I beg to differ - I have a project that used this generator when it supported camel case. if I upgrade now, half my files are all lower case and...

Anyone? We have successfully identified the code where the modification happens. In class `net.fortuna.ical4j.model.Iso8601` the `toString()` function calculates the time according to DST and handles `floating` scenario. it is unclear...

Note the comment in `GregorianCalendar` (used by the `CalendarBuilder#build` eventually) saying that ``` // Compute the time zone offset and DST offset. There are two potential // ambiguities here. We'll...

right. this is exactly the issue. this is why the ``` java DtEnd dtEnd = new DtEnd(); dtEnd.setValue("20160325T030000"); ``` is modifying the time, but it does so incorrectly according to...