features-skeleton/support/env.rb in calabash-cucumber-0.17.1 vs features-skeleton/support/env.rb in calabash-cucumber-0.18.0
- old
+ new
@@ -1,9 +1,15 @@
-# Requiring this file will import Calabash and the Calabash predefined Steps.
-require 'calabash-cucumber/cucumber'
+# Requiring this file will import:
+# * the Calabash Cucumber API,
+# * the Calabash Cucumber predefined Steps,
+# * and the Calabash::Formatters::Html cucumber formatter.
+require "calabash-cucumber/cucumber"
# To use Calabash without the predefined Calabash Steps, uncomment these
# three lines and delete the require above.
-# require 'calabash-cucumber/wait_helpers'
-# require 'calabash-cucumber/operations'
+# require "calabash-cucumber/wait_helpers"
+# require "calabash-cucumber/operations"
# World(Calabash::Cucumber::Operations)
+
+# Uncomment this line if you want the Calabash::Formatters::Html formatter.
+# require "calabash-cucumber/formatters/html"