Skip to content

Commit

Permalink
fix: docblock leakage from file metadata (amend)
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph committed Feb 21, 2024
1 parent 7064699 commit 515559e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builtin-plugins/docblock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const docblockPlugin: PluginConstructor = () => {
};

function hasDocblockAtStart(string_: string) {
return /^\s*\/\*\*/m.test(string_);
return /^\s*\/\*\*/.test(string_);
}

function mergeIntoTestItem(
Expand Down

0 comments on commit 515559e

Please sign in to comment.