Chatwoot/spec/controllers/dashboard_controller_spec.rb

11 lines
206 B
Ruby
Raw Normal View History

require 'rails_helper'
describe '/app', type: :request do
describe 'GET /app' do
it 'renders the dashboard' do
get '/app'
expect(response).to have_http_status(:success)
end
end
end