test(docs-infra): remove usage of blacklist in test naming (#38927)

Remove usage of blacklist in test naming of processor tranform tests.

PR Close #38927
This commit is contained in:
Joey Perrott 2020-09-21 14:10:48 -07:00 committed by Alex Rickabaugh
parent 15ea811f05
commit ffe89fb07d
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ describe('createSitemap processor', () => {
expect(docs.pop().urls).toEqual(['abc', 'fgh']); expect(docs.pop().urls).toEqual(['abc', 'fgh']);
}); });
it('ignoring blacklisted doc types', () => { it('ignoring excluded doc types', () => {
const docs = [ const docs = [
{ path: 'abc', outputPath: 'abc', docType: 'good' }, { path: 'abc', outputPath: 'abc', docType: 'good' },
{ path: 'cde', outputPath: 'cde', docType: 'bad' }, { path: 'cde', outputPath: 'cde', docType: 'bad' },
@ -58,7 +58,7 @@ describe('createSitemap processor', () => {
expect(docs.pop().urls).toEqual(['abc', 'fgh']); expect(docs.pop().urls).toEqual(['abc', 'fgh']);
}); });
it('ignoring blacklisted paths', () => { it('ignoring excluded paths', () => {
const docs = [ const docs = [
{ path: 'abc', outputPath: 'abc' }, { path: 'abc', outputPath: 'abc' },
{ path: 'cde', outputPath: 'cde' }, { path: 'cde', outputPath: 'cde' },