Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed Aug 13, 2024
1 parent be9e1a7 commit dc9a8f6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/buildSummary.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ describe('summaryGeneration', () => {

const expectedTable = [
['MATLAB Build Task', 'Status', 'Description', 'Duration (hh:mm:ss)'],
['Test Task', '🔴 Failed', 'A test task', '00:00:10'],
['Test Task', 'failed', 'A test task', '00:00:10'],
//['Test Task', '🔴 Failed', 'A test task', '00:00:10'],
];

const table = buildSummary.getBuildSummaryTable(mockTasks);
Expand All @@ -30,7 +31,8 @@ describe('summaryGeneration', () => {
it('writes the summary correctly', () => {
const mockTableRows = [
['MATLAB Build Task', 'Status', 'Description', 'Duration (hh:mm:ss)'],
['Test Task', '🔴 Failed', 'A test task', '00:00:10'],
['Test Task', 'failed', 'A test task', '00:00:10'],
//['Test Task', '🔴 Failed', 'A test task', '00:00:10'],
];

buildSummary.writeSummary(mockTableRows);
Expand Down

0 comments on commit dc9a8f6

Please sign in to comment.