mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:59:50 +08:00
11 lines
206 B
Ruby
11 lines
206 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
|