123456789101112131415161718 |
- require 'rails_helper'
- RSpec.describe 'Mobile > App Home Page', app: :mobile, type: :system do
- context 'when on the home page', authenticated_as: :admin do
- let(:admin) { create(:admin) }
- before do
- visit '/'
- end
-
- it 'check that we are on the home page' do
- expect(page).to have_text('Home')
- end
- end
- end
|