Remove 'includeGuides' unit tests (#40165)

This commit is contained in:
Peter Bengtsson 2023-08-02 13:19:44 -04:00 коммит произвёл GitHub
Родитель 3c4717bbc3
Коммит a1cd22fdb0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 0 добавлений и 49 удалений

10
tests/fixtures/article-with-includeGuides.md поставляемый
Просмотреть файл

@ -1,10 +0,0 @@
---
title: Article with includeGuides
versions:
free-pro-team: '*'
includeGuides:
- /path/guide1
- /path/guide2
- /path/guide3
layout: product-guides
---

Просмотреть файл

@ -333,45 +333,6 @@ describe('Page class', () => {
})
})
describe('includeGuides', () => {
let page
beforeEach(async () => {
page = await Page.init({
relativePath: 'article-with-includeGuides.md',
basePath: path.join(__dirname, '../fixtures'),
languageCode: 'en',
})
})
it('includes guide paths specified in frontmatter', async () => {
expect(page.includeGuides).toStrictEqual(['/path/guide1', '/path/guide2', '/path/guide3'])
})
// Docs Engineering issue: 971
it.skip('renders guides and topics', async () => {
/* getLinkData.mockImplementation(() => {
return [{
page: { topics: ['Spring', 'Summer'] }
}, {
page: { topics: ['Summer', 'Fall'] }
}, {
page: { topics: ['Fall', 'Winter'] }
}]
}) */
// const guides = ['/path/guide1', '/path/guide2', '/path/guide3']
const context = {
currentVersion: nonEnterpriseDefaultVersion,
currentLanguage: 'en',
}
await page.render(context)
// expect(getLinkData).toHaveBeenCalledWith(guides, context)
expect(page.includeGuides).toHaveLength(3)
expect(page.allTopics).toHaveLength(4)
expect(page.allTopics).toEqual(expect.arrayContaining(['Spring', 'Summer', 'Fall', 'Winter']))
})
})
describe('videos', () => {
let page