Class: CypressRails::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/cypress_rails/cli.rb

Instance Method Summary collapse

Instance Method Details

#openObject



62
63
64
65
66
67
68
# File 'lib/cypress_rails/cli.rb', line 62

def open
  server.start do |host, port|
    exit Runner.new(
      host: host, port: port, bin_path: config.cypress_bin_path, tests_path: config.tests_path
    ).open
  end
end

#testObject



53
54
55
56
57
58
59
# File 'lib/cypress_rails/cli.rb', line 53

def test
  server.start do |host, port|
    exit Runner.new(
      host: host, port: port, bin_path: config.cypress_bin_path, tests_path: config.tests_path
    ).run(config.browser)
  end
end