20 lines
548 B
Bash
Executable File
20 lines
548 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/download_spec.rb"
|
|
"spec/features/session_video_spec.rb"
|
|
"spec/features/affiliate_program_spec.rb"
|
|
"spec/features/affiliate_visit_tracking_spec.rb"
|
|
"spec/features/affiliate_referral_spec.rb"
|
|
"spec/features/musician_hover_spec_1.rb"
|
|
"spec/features/musician_hover_spec_2.rb"
|
|
"spec/controllers/api_affiliate_controller_spec.rb"
|
|
)
|
|
|
|
|
|
bundle exec rspec ${tests[@]}
|