Morgan Roderick
Morgan Roderick
In order to avoid situations where authors forget to add the `expecation` property, we can expand the API to have `referee.addWithExpectation` method. This method should verify that the `expectation` property...
https://humanwhocodes.com/snippets/2020/10/create-typescript-declarations-from-javascript-jsdoc/
When creating new releases for the Sinon projects, I spend time on cutting out things like this from the changelog: ``` - [`871ac09`](https://github.com/sinonjs/formatio/commit/871ac093ea61424f79735733bca2695458ef3f26) Bump @sinonjs/referee from 3.2.0 to 4.0.0 (dependabot-preview[bot])...
In v20, we removed fakeXHR and fakeServer. > It's time. We might want to add some notes to the migration-guide.md about alternatives (msw, etc). _Originally posted by @fatso83 in https://github.com/sinonjs/sinon/pull/2642#pullrequestreview-2698737989_
In https://github.com/sinonjs/sinon/pull/2636 we removed `unimported`, because it had been archived. The author recommends using [`knip`](https://knip.dev) instead. Let's implement `knip` and use it for finding unused files and dependencies.
#### Purpose (TL;DR) - mandatory This is a solution for #2629 See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor#get for the `.get` property on the property descriptor. #### How to verify - mandatory 1. Check out...
## Description of the issue 📄 There are many `404 Not found` log entries for `/sitemap.xml`, because search engine crawlers are trying to find one and none can be found....
## Description of the issue 📄 During a past incident I learned that Rails is serving up static assets, which is completely unnecessary. We already have the domain set up...
In `db/seeds.rb` we are creating a small amount of workshops. ```ruby Rails.logger.info "Creating a lot of old workshops..." past_workshops_since_n_months = 5 * 12 past_workshops_one_per_n_months = 6 past_workshops_count = past_workshops_since_n_months/past_workshops_one_per_n_months past_workshops...
I have recently removed the unused GoSquared and unused, outdated Google Analytics integrations, which makes it clear that we have no analytics for this app. @till suggested to me that...