Jesper Sørensen
Jesper Sørensen
## Summary A follow-up for https://github.com/facebook/jest/pull/9270 It's often useful to override mock implementations for specific tests, and `mockImplementationOnce` is there to help out. It is however not a very elegant...
## Summary This is an attempt to cover a commen use case (for me) that I think needs improvement: - There's a bunch of tests in one file - Most...
Given the following file: ```ruby RSpec.feature 'Shifts report show' do end ``` `RSpec/Capybara/FeatureMethods` will auto-correct to: ```ruby RSpec.expect 'Shifts report show' do end ``` But that correction is not safe,...
Related issue: https://github.com/rubocop/rubocop-rspec/issues/1928 Previously you would first get: ``` Error: The `RSpec/Rails/InferredSpecType` cop has been moved to `RSpecRails/InferredSpecType`. (obsolete configuration found in .rubocop.yml, please update it) ``` Then after renaming...
I'm making a butane config for running nextcloud, based on [this](https://github.com/LorbusChris/nextcloud-quadlet) If possible I want the containers to run rootless, which I believe is possible if I place the containers...