forked from hotwired/turbo-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't exec
bundle install
in bin/test
This can have adverse effects when building locally. These steps, if required, should be performed by the user.
- Loading branch information
Showing
2 changed files
with
3 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
#!/usr/bin/env ruby | ||
$: << File.expand_path("../test", __dir__) | ||
|
||
puts "Installing Ruby dependencies" | ||
`bundle install` | ||
|
||
puts "Installing JavaScript dependencies" | ||
`yarn install` | ||
|
||
puts "Building JavaScript" | ||
`yarn build` | ||
|
||
puts "Preparing test database" | ||
`cd test/dummy; ./bin/rails db:test:prepare` | ||
|
||
require "bundler/setup" | ||
require "rails/plugin/test" | ||
require "rails/plugin/test" |