Sté

Results 6 comments of Sté

Maybe because js `Number` types is not reliable when dealing with integer greater than 53 bits, see https://www.ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer. Just my two cents.

Why not using a custom converter ? ``` internal sealed class ExpandoObjectConverter : CustomCreationConverter { public override ExpandoObject Create(Type objectType) { return new ExpandoObject(); } public override bool CanConvert(Type objectType)...

I have some troubles to understand what to do. Below a sample of my code : ``` import { client } from 'nightwatch-api'; import { defineStep } from 'cucumber'; const...

May be i've to tweak *`test/support/setup.js`* ``` import { setDefaultTimeout, AfterAll, BeforeAll} from 'cucumber' import { createSession, closeSession } from 'nightwatch-api'; import { client } from 'nightwatch-api'; // { await...

ok, thanks for your time. And thanks for `nightwatch-api` 👍