rubyx-debugger/spec/app/main/integration/sample_integration_spec.rb
2015-07-06 14:20:21 +03:00

12 lines
328 B
Ruby

require 'spec_helper'
describe 'sample integration test', type: :feature do
# An example integration spec, this will only be run if ENV['BROWSER'] is
# specified. Current values for ENV['BROWSER'] are 'firefox' and 'phantom'
it 'should load the page' do
visit '/'
expect(page).to have_content('Home')
end
end