mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
11 lines
206 B
Ruby
11 lines
206 B
Ruby
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
|