We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test-html-lang-filter
1 parent 04d3c8e commit 335bc70Copy full SHA for 335bc70
1 file changed
Rakefile
@@ -14,7 +14,7 @@ CONFIG = "_config.yml"
14
task default: [:build]
15
16
desc "Run tests (test-linter, lint, build)"
17
-task test: %i[test-news-plugin test-linter lint build]
+task test: %i[test-news-plugin test-html-lang-filter test-linter lint build]
18
19
desc "Build the Jekyll site"
20
task :build do
@@ -129,3 +129,11 @@ Rake::TestTask.new(:"test-news-plugin") do |t|
129
t.test_files = FileList['test/test_plugin_news.rb']
130
t.verbose = true
131
end
132
+
133
+require "rake/testtask"
134
+Rake::TestTask.new(:"test-html-lang-filter") do |t|
135
+ t.description = "Run tests for the HTML language filter"
136
+ t.libs = ["test"]
137
+ t.test_files = FileList['test/test_html_lang_filter.rb']
138
+ t.verbose = true
139
+end
0 commit comments