Skip to content

Commit

Permalink
feat(plugin-lighthouse): omit audit details table title
Browse files Browse the repository at this point in the history
  • Loading branch information
hanna-skryl committed Aug 13, 2024
1 parent 06b177f commit eb7d629
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ describe('toAuditDetails', () => {

expect(outputs).toStrictEqual({
table: {
title: 'Table',
columns: [
{
key: 'name',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export function parseTableToAuditDetailsTable(

try {
return tableSchema().parse({
title: 'Table',
columns: parseTableColumns(rawHeadings),
rows: items.map(row => parseTableRow(row, rawHeadings)),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ describe('parseTableToAuditDetails', () => {
} satisfies Details.Table);

expect(outputs).toStrictEqual({
title: 'Table',
columns: [
{
key: 'statistic',
Expand Down Expand Up @@ -219,7 +218,6 @@ describe('parseTableToAuditDetails', () => {
} as Details.Table);

expect(outputs).toEqual({
title: 'Table',
columns: [
{
align: 'left',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ describe('toAuditOutputs', () => {
table: {
columns: [{ key: 'number', align: 'left' }],
rows: [{ number: 42 }],
title: 'Table',
},
});
});
Expand Down

0 comments on commit eb7d629

Please sign in to comment.