We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d1268f commit de4ed16Copy full SHA for de4ed16
bin/test
@@ -0,0 +1,11 @@
1
+#!/usr/bin/env ruby
2
+
3
+require "bundler/setup"
4
5
+if ARGV.empty?
6
+ # Run all tests when no arguments provided
7
+ exec("bundle", "exec", "rake", "test")
8
+else
9
+ # Use m gem for specific tests
10
+ exec("bundle", "exec", "m", *ARGV)
11
+end
0 commit comments