2021-02-14 18:10:55 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Known good tests as we build back up test suite
|
|
|
|
|
|
|
|
|
|
tests=(
|
|
|
|
|
"spec/features/signup_spec.rb"
|
|
|
|
|
"spec/features/signin_spec.rb"
|
2021-02-15 04:32:27 +00:00
|
|
|
"spec/features/affiliate_program_spec.rb"
|
|
|
|
|
"spec/features/affiliate_visit_tracking_spec.rb"
|
|
|
|
|
"spec/features/affiliate_referral_spec.rb"
|
|
|
|
|
"spec/controllers/api_affiliate_controller_spec.rb"
|
2021-02-14 18:10:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bundle exec rspec ${tests[@]}
|