Class: CypressRails::CLI
- Inherits:
-
Thor
- Object
- Thor
- CypressRails::CLI
- Defined in:
- lib/cypress_rails/cli.rb
Instance Method Summary collapse
Instance Method Details
#open ⇒ Object
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 |
#test ⇒ Object
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 |