summaryrefslogtreecommitdiff
path: root/spec/requests/pwa_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/pwa_controller_spec.rb')
-rw-r--r--spec/requests/pwa_controller_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/requests/pwa_controller_spec.rb b/spec/requests/pwa_controller_spec.rb
index f74f37ea9d0..7a295b17231 100644
--- a/spec/requests/pwa_controller_spec.rb
+++ b/spec/requests/pwa_controller_spec.rb
@@ -3,6 +3,15 @@
require 'spec_helper'
RSpec.describe PwaController do
+ describe 'GET #manifest' do
+ it 'responds with json' do
+ get manifest_path(format: :json)
+
+ expect(response.body).to include('The complete DevOps platform.')
+ expect(response).to have_gitlab_http_status(:success)
+ end
+ end
+
describe 'GET #offline' do
it 'responds with static HTML page' do
get offline_path