Skip to content

Commit 5ad7657

Browse files
authored
Merge pull request #7657 from github/repo-sync
repo sync
2 parents 0517318 + 563394d commit 5ad7657

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

content/admin/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: GitHub Enterprise Documentation
3-
shortTitle: GitHub Enterprise
2+
title: Enterprise administrator documentation
3+
shortTitle: Enterprise administrators
44
intro: 'Documentation and guides for enterprise administrators, system administrators, and security specialists who {% if enterpriseServerVersions contains currentVersion %}deploy, {% endif %}configure{% if enterpriseServerVersions contains currentVersion %},{% endif %} and manage {% data variables.product.product_name %}.'
55
introLinks:
66
overview: '{% if enterpriseServerVersions contains currentVersion %}/admin/overview/system-overview{% elsif currentVersion == "github-ae@latest" %}/admin/overview/about-github-ae{% endif %}'

tests/rendering/header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ describe('header', () => {
126126

127127
const ghe = $(`#homepages a[href="/en/enterprise-server@${latest}/admin"]`)
128128
expect(ghe.length).toBe(1)
129-
expect(ghe.text().trim()).toBe('GitHub Enterprise')
129+
expect(ghe.text().trim()).toBe('Enterprise administrators')
130130
expect(ghe.attr('class').includes('active')).toBe(false)
131131
})
132132

tests/rendering/sidebar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('sidebar', () => {
1616

1717
test('highlights active product on Enterprise pages', async () => {
1818
expect($enterprisePage('.sidebar-products li.sidebar-product').length).toBe(1)
19-
expect($enterprisePage('.sidebar-products li.sidebar-product > a').text().trim()).toBe('GitHub Enterprise')
19+
expect($enterprisePage('.sidebar-products li.sidebar-product > a').text().trim()).toBe('Enterprise administrators')
2020
})
2121

2222
test('highlights active product on GitHub pages', async () => {

tests/unit/products.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('mobile-only products nav', () => {
2727
expect((await getDOM('/github'))('#current-product').text().trim()).toBe('GitHub.com')
2828

2929
// Enterprise server
30-
expect((await getDOM('/en/enterprise/admin'))('#current-product').text().trim()).toBe('GitHub Enterprise')
30+
expect((await getDOM('/en/enterprise/admin'))('#current-product').text().trim()).toBe('Enterprise administrators')
3131
expect((await getDOM('/en/enterprise/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address'))('#current-product').text().trim()).toBe('GitHub.com')
3232

3333
expect((await getDOM('/desktop'))('#current-product').text().trim()).toBe('GitHub Desktop')

0 commit comments

Comments
 (0)