blob: 9778c98a0b18abede0017bb58755eaf2ab3e47c9 [file] [log] [blame]
require 'html-proofer'
task :test do
sh "bundle exec jekyll build"
HTMLProofer.check_directory("./content", {
:allow_hash_href => true,
:check_html => true,
:file_ignore => [/javadoc/]
}).run
end