mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-17 07:07:08 +08:00
10 lines
206 B
Ruby
Vendored
10 lines
206 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
task 'turbo:spec' => :test do |t|
|
|
require './lib/turbo_tests'
|
|
|
|
TurboTests::Runner.run(
|
|
formatters: [{ name: 'progress', outputs: ['-'] }],
|
|
files: ['spec']
|
|
)
|
|
end
|