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:
parent
15ea811f05
commit
ffe89fb07d
|
@ -47,7 +47,7 @@ describe('createSitemap processor', () => {
|
|||
expect(docs.pop().urls).toEqual(['abc', 'fgh']);
|
||||
});
|
||||
|
||||
it('ignoring blacklisted doc types', () => {
|
||||
it('ignoring excluded doc types', () => {
|
||||
const docs = [
|
||||
{ path: 'abc', outputPath: 'abc', docType: 'good' },
|
||||
{ path: 'cde', outputPath: 'cde', docType: 'bad' },
|
||||
|
@ -58,7 +58,7 @@ describe('createSitemap processor', () => {
|
|||
expect(docs.pop().urls).toEqual(['abc', 'fgh']);
|
||||
});
|
||||
|
||||
it('ignoring blacklisted paths', () => {
|
||||
it('ignoring excluded paths', () => {
|
||||
const docs = [
|
||||
{ path: 'abc', outputPath: 'abc' },
|
||||
{ path: 'cde', outputPath: 'cde' },
|
||||
|
|
Loading…
Reference in New Issue