Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
syzzana committed Nov 25, 2023
1 parent 3c4ca82 commit afd7eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testResults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const logTestCaseData = (count: number, test: TestCaseData) => {
const status = setIconAndColorPerTestStatus(test.status);
const duration = Color.text(`(${test.duration}ms)`).gray().dim().valueOf();
const counter = `${Color.text(`${count}.`).gray().valueOf()}`;
let title;
let title: string;
if (test.status === "failed") {
title = Color.text(test.title).red().valueOf();
} else if (test.status === "skipped") {
Expand Down

0 comments on commit afd7eaf

Please sign in to comment.