Skip to content

Commit

Permalink
fix: composite description rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph committed Feb 21, 2024
1 parent 4393418 commit cb210f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options/default-options/testCase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const testCase: ResolvedTestCaseCustomizer = {
name: ({ testCase }) => testCase.title,
fullName: ({ testCase }) => testCase.fullName,
description: ({ testCaseMetadata }) => {
const text = testCaseMetadata.description?.join('\n') ?? '';
const text = testCaseMetadata.description?.join('\n\n') ?? '';
const before = extractCode(
testCaseMetadata.steps?.filter(
(step) =>
Expand Down

0 comments on commit cb210f1

Please # to comment.