style(docs-infra): remove unnecessary call to console.log() (#25020)
PR Close #25020
This commit is contained in:
parent
a3cf61b7cf
commit
6a4d66d432
|
@ -115,7 +115,6 @@ describe('ApiListComponent', () => {
|
||||||
|
|
||||||
component.filteredSections.subscribe(filtered => {
|
component.filteredSections.subscribe(filtered => {
|
||||||
filtered = filtered.filter(s => s.items);
|
filtered = filtered.filter(s => s.items);
|
||||||
console.log(filtered);
|
|
||||||
expect(filtered.length).toBe(1, 'sections');
|
expect(filtered.length).toBe(1, 'sections');
|
||||||
expect(filtered[0].name).toBe(section, 'section name');
|
expect(filtered[0].name).toBe(section, 'section name');
|
||||||
const items = filtered[0].items!;
|
const items = filtered[0].items!;
|
||||||
|
|
Loading…
Reference in New Issue