Gleb Bahmutov

Results 551 comments of Gleb Bahmutov

yeah, good catch, I should remove these, hmm, when do I get time to do this?!

This is controlled by calling https://github.com/bahmutov/cypress-movie/blob/master/cypress/support/index.js#L15 `cy.clearViewport()` command

There is `--device-scale-factor` among Chrome CLI switches https://peter.sh/experiments/chromium-command-line-switches/

So instead of just making gif of every failing test by default, why don't we look if this is required. I say grab the environment variable `RECORD_FAILED_TESTS` and if it...

Hmm I think I forgot to transpile them to es5 when publishing, sigh Sent from my iPhone > On Jul 28, 2020, at 19:50, Samuel Lucas wrote: > > ...

Probably in utils.ts ```ts export const combineSchemas = (...versioned: VersionedSchema[]) => { const result: SchemaCollection = {} versioned.forEach(v => { const title = v[Object.keys(v)[0]].schema.title const name = normalizeName(title) result[name] =...

Is there no flag for Protractor to continue even if a test fails or an error is thrown?

How would this look? Can you give me an example Netlify config file?

We are using `utils.run` https://github.com/netlify/build/blob/master/packages/run-utils/README.md to execute the server command.

I tried it out in https://github.com/cypress-io/netlify-plugin-prebuild-example/pull/54 - under the hood we run `utils.run` that uses `execa v3`. The plugin calls "childProcess.kill` which does kill it https://github.com/sindresorhus/execa#kill-a-process - on Linux the...