buffcode

Results 50 comments of buffcode

Modifying the real `onLine` attribute, tested in Cypress 12.11.0: ```js // go offline cy.window().then((win) => { cy.stub(win.navigator, 'onLine').value(false); cy.wrap(win).trigger('offline'); }); // go online cy.window().then((win) => { cy.stub(win.navigator, 'onLine').value(true); cy.wrap(win).trigger('online'); });...

What isn't working? We are using DangerJS successfully on a GitLab CE instance since https://github.com/danger/danger-js/pull/1406 has been merged on the latest released version 11.3.1.

In addition to @mat813 excellent finding, we are using the following to allow both merge request and branch pipelines with the correct MR: ```yaml script: - export CI_MERGE_REQUEST_IID="${CI_MERGE_REQUEST_IID:-${CI_OPEN_MERGE_REQUESTS#*!}}" - yarn...

This can easily be fixed: ```dotenv # .env / .env.custom # ... OPENAI_API_KEY=your-key ``` ```py # sentry/sentry.conf.py OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY") SENTRY_FEATURES["organizations:open-ai-suggestion"] = True ``` Don't forget to restart the container,...

@lyrixx: I would like to pick up this feature for Prometheus. As Prometheus will switch from `TaggableCollector` to `InlineTaggableGaugeableCollector` and thus lose `setTags()`, what is your preference for an upgrade...

This should either be fixed or result in an compilation error, mentioning an invalid target name.

Any updates on this? In which version is / was this expected to be fixed? We have a monorepo and `shamefully-hoist = true` only works globally within the repo and...

I am currently implementing this feature and have most of the functionality ready for vehicles. Regarding "conditional variables and strings" IMHO the most preferable way would be to use a...

> additional note: A way to import v3 aliases into v4 would be very useful. By detecting and importing `lssm_LSS_RENAMEFZ_STORAGE` from the local storage or modifying the generic import function?...