FIX: Requests were not being logged correctly

`enable` was defaulting to `nil` which is not what we wanted.
This commit is contained in:
Robin Ward
2020-05-20 15:09:17 -04:00
parent e1bd57007b
commit 096eca0ee8
2 changed files with 7 additions and 3 deletions

View File

@ -128,6 +128,9 @@ module TestSetup
# code that runs inside jobs. run_later! means they are put on the redis
# queue and never processed.
Jobs.run_later!
# Don't track ApplicationRequests in test mode unless opted in
ApplicationRequest.disable
end
end