mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
8 lines
194 B
Ruby
8 lines
194 B
Ruby
# frozen_string_literal: true
|
|
|
|
task "turbo:spec" => :test do |t|
|
|
require "./lib/turbo_tests"
|
|
|
|
TurboTests::Runner.run(formatters: [{ name: "progress", outputs: ["-"] }], files: ["spec"])
|
|
end
|