Revert "FIX: public_file_server.enabled is false in test (#8192)" (#8196)

This reverts commit 5a8fdd02fe.
This commit is contained in:
Krzysztof Kotlarek 2019-10-16 10:39:31 +11:00 committed by GitHub
parent 061c8874f5
commit 0bf55fe2ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ Discourse::Application.configure do
config.cache_classes = true
# Configure static asset server for tests with Cache-Control for performance
config.public_file_server.enabled = false
config.public_file_server.enabled = true
# don't consider reqs local so we can properly handle exceptions like we do in prd
config.consider_all_requests_local = false

View File

@ -266,6 +266,7 @@ describe UploadsController do
end
it 'returns 200 when js file' do
ActionDispatch::FileHandler.any_instance.stubs(:match?).returns(false)
upload = upload_file("test.js", "themes")
get upload.url
expect(response.status).to eq(200)