mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
543 B
22 lines
543 B
module Docs
|
|
class Jest < UrlScraper
|
|
self.type = 'jest'
|
|
self.release = '23.3.0'
|
|
self.base_url = 'https://jestjs.io/docs/en/'
|
|
self.root_path = 'getting-started'
|
|
self.links = {
|
|
home: 'https://facebook.github.io/jest/',
|
|
code: 'https://github.com/facebook/jest'
|
|
}
|
|
|
|
html_filters.push 'jest/entries', 'jest/clean_html'
|
|
|
|
options[:container] = '.docMainWrapper'
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2014–present Facebook Inc.<br>
|
|
Licensed under the BSD License.
|
|
HTML
|
|
end
|
|
end
|