Sha256: 7a357129990962e515ace35dc899799b84d74e5e4151e2fa9ba82face389ea7c

Contents?: true

Size: 376 Bytes

Versions: 1

Compression:

Stored size: 376 Bytes

Contents

if ENV['BROWSER'] && ENV['BROWSER'] == 'firefox'
  require 'spec_helper'

  describe "integration test", :type => :feature do
    it "should load the page" do      
      visit '/'

      expect(page).to have_content('Home')
      # expect(page).to have_content('About')
      # page.has_text?('About')
      # puts "HAS CONTENT: #{page.has_text?('About')}"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
volt-0.7.20 spec/integration/test_integration_spec.rb