Skip to content

Commit 2f42c58

Browse files
lsylvesterioquatix
andcommitted
Use explicit argument lists when spawning the server and tests.
Co-authored-by: Samuel Williams <[email protected]>
1 parent d9e79ce commit 2f42c58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actionview/Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ end
9292
namespace :ujs do
9393
desc "Starts the test server"
9494
task :server do
95-
spawn("bundle exec rackup test/ujs/config.ru -p 4567 -s puma")
96-
system("npm test -- --no-single-run --browsers Chrome")
95+
spawn("bundle", "exec", "rackup", "test/ujs/config.ru", "-p", "4567", "-s", "puma")
96+
system("npm", "test", "--", "--no-single-run", "--browsers", "Chrome")
9797
end
9898
end
9999

0 commit comments

Comments
 (0)