-
The database, MySQL, isn't being properly cleaned using the RSpec recipe below:
```
RSpec.configure do |config|
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCle…
-
I am trying to install chatwoot with docker-compose, but having some troubles making it work.
I suspect it might be because I am using nonstandards ports??
It says it creates the database but then…
-
With `strict_mode`, the Testing adapter tries to check the equality of parameters here.
https://github.com/lostisland/faraday/blob/24b3fd36e670e4c49e977bd23d6c1314c89d7089/lib/faraday/adapter/test.…
-
Hi everyone! :heart:
My "quick" question is, Is it possible to chain multiple block-expecting matchers like `change` with other third-party matchers?
In [`rspec-trailblazer`](https://github.com/…
-
Recently upgraded doorkeeper to 5.2.0 from 4.2.5 and it causes SQL issues with queries for oauth_access_token stuck in creating sort index for user that query to many tokens or request a token along…
-
### Subject of the issue
The introduction of [error highlight behavior](https://github.com/ruby/error_highlight) in Ruby 3.1 for NameError causes the `raise_error(message) `and `raise_error.with_me…
-
Hi,
I am trying to test some service endpoints with Pact using Windows 10. I am getting a strange ruby error on the require statements on line 1 of the node_module packages when running ./node_mod…
-
As a developer using this template
I want to use the official Lighthouse CI tools
So that I have a more time effective way to run audits
-----------------------------------------------------…
-
## What Ruby, Rails and RSpec versions are you using?
Ruby version: 3.1
Rails version: 7.0.0
RSpec version: 3.10
rspec-rails 5.0.2
## Observed behaviour
Locally, my tests work. But on He…
-
The following syntax is possible
```
subject { -> { do_something } }
it { is_expected.to change(:something).to(...) }
```
which is the same as:
```
it { expect { do_something }.to change(:som…