Skip to content

Commit 835423b

Browse files
agarneha1331francisf
authored andcommitted
Fix
1 parent db719de commit 835423b

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ Alternatively the variables can be set in the environment using env or your CI f
1818

1919
Notice that selenium driver.quit is not required for Capybara tests because Capybara implicitly does so.
2020

21-
To run parallel tests use `parallel_cucumber`instead of cucumber. Add the option -n to specify the number of parallel processes. Add the parallel_tests gem in your Gemfile.
22-
23-
To run local testing, set the capability `browserstack.local` in config/local.config.yml to true.
24-
2521
###Further Reading
2622
- [Cucumber](https://cucumber.io/)
2723
- [CapyBara](http://jnicklas.github.io/capybara/)

Rakefile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,9 @@ task :parallel do |_t, _args|
1818

1919
Parallel.map([*1..@num_parallel], in_processes: @num_parallel) do |task_id|
2020
ENV['TASK_ID'] = (task_id - 1).to_s
21-
ENV['name'] = 'parallel_test'
2221
ENV['CONFIG_NAME'] = 'parallel'
2322

2423
Rake::Task['single'].invoke
2524
Rake::Task['single'].reenable
2625
end
2726
end
28-
29-
task :test do |_t, _args|
30-
Rake::Task['single'].invoke
31-
Rake::Task['single'].reenable
32-
Rake::Task['local'].invoke
33-
Rake::Task['parallel'].invoke
34-
end

0 commit comments

Comments
 (0)