Class: CypressRails::CLI

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

Instance Method Summary collapse

Instance Method Details

#openObject



47
48
49
50
51
52
53
# File 'lib/cypress_rails/cli.rb', line 47

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



38
39
40
41
42
43
44
# File 'lib/cypress_rails/cli.rb', line 38

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
  end
end