DEV: Fix flaky specs (#13226)

Some specs failed when `LOAD_PLUGINS=1` was set while migrating the test DB and the narrative-bot plugin disabled the `send_welcome_message` site setting.
This commit is contained in:
Gerhard Schlager
2021-06-01 14:38:55 +02:00
committed by GitHub
parent fb4dc2f35c
commit 3df928d609
3 changed files with 13 additions and 6 deletions

View File

@ -64,6 +64,7 @@ describe UsersController do
context 'valid token' do
context 'welcome message' do
it 'enqueues a welcome message if the user object indicates so' do
SiteSetting.send_welcome_message = true
user.update(active: false)
put "/u/activate-account/#{token}"
expect(response.status).to eq(200)