Skip to content

Commit

Permalink
Added tests for json read
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed May 24, 2024
1 parent c0a4f7c commit 26fc617
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import { promisify } from 'util';
// Promisify the readFile function to use it with async/await
const readFileAsync = promisify(readFile);

interface Task {
export interface Task {
name: string;
description: string;
failed: boolean;
skipped: boolean;
duration: string;
}

interface TaskList {
export interface TaskList {
taskDetails: Task[];
}

Expand Down

0 comments on commit 26fc617

Please sign in to comment.