You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

discover.rb 299 B

2 years ago
1234567891011121314
  1. # frozen_string_literal: true
  2. Autotest.add_discovery do
  3. if File.directory?('features')
  4. case ENV['AUTOFEATURE']
  5. when /true/i
  6. 'cucumber'
  7. when /false/i
  8. # noop
  9. else
  10. puts '(Not running features. To run features in autotest, set AUTOFEATURE=true.)'
  11. end
  12. end
  13. end

No Description

Contributors (1)