Update CodeceptJS documentation (1.4.4)

pull/929/head
Thibaut Courouble 6 years ago
parent 87d87d4190
commit 459ecfdfe6

@ -20,8 +20,8 @@ module Docs
def additional_entries def additional_entries
return [] unless subpath.start_with?('helpers') && subpath != 'helpers/' return [] unless subpath.start_with?('helpers') && subpath != 'helpers/'
css('h2').each_with_object [] do |node, entries| css('h2, h3').each_with_object [] do |node, entries|
next if node['id'] == 'access-from-helpers' next if node['id'] == 'access-from-helpers' || node.content !~ /\s*[a-z_]/
entries << ["#{node.content} (#{name})", node['id']] entries << ["#{node.content} (#{name})", node['id']]
end end
end end

@ -3,7 +3,7 @@ module Docs
self.name = 'CodeceptJS' self.name = 'CodeceptJS'
self.type = 'simple' self.type = 'simple'
self.root_path = 'index.html' self.root_path = 'index.html'
self.release = '1.3.1' self.release = '1.4.4'
self.base_url = 'https://codecept.io/' self.base_url = 'https://codecept.io/'
self.links = { self.links = {
home: 'https://codecept.io/', home: 'https://codecept.io/',

Loading…
Cancel
Save