16 lines
379 B
Bash
Executable File
16 lines
379 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Known good tests as we build back up test suite
|
|
|
|
tests=(
|
|
"spec/features/signup_spec.rb"
|
|
"spec/features/signin_spec.rb"
|
|
"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"
|
|
)
|
|
|
|
|
|
bundle exec rspec ${tests[@]}
|