Skip to content

Commit 54475a0

Browse files
chore(deps): update dependency prettier to v3.5.3 (#2506)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: David Goss <[email protected]>
1 parent 9006989 commit 54475a0

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

package-lock.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300
"mocha": "^11.0.1",
301301
"mustache": "4.2.0",
302302
"nyc": "15.1.0",
303-
"prettier": "3.0.3",
303+
"prettier": "3.5.3",
304304
"reindent-template-literals": "1.1.0",
305305
"shx": "0.3.4",
306306
"sinon": "15.2.0",

src/formatter/helpers/test_case_attempt_parser.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ function parseStep({
6969
keyword: doesHaveValue(testStep.pickleStepId)
7070
? keyword
7171
: isBeforeHook
72-
? 'Before'
73-
: 'After',
72+
? 'Before'
73+
: 'After',
7474
result: testStepResult,
7575
}
7676
if (doesHaveValue(testStep.hookId)) {

src/plugin/plugin_manager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class PluginManager {
4141
const cleanupFn = await plugin.formatter({
4242
on: (key, handler) => this.register(key, handler),
4343
options: plugin.optionsKey
44-
? (options as any)[plugin.optionsKey] ?? ({} as OptionsType)
44+
? ((options as any)[plugin.optionsKey] ?? ({} as OptionsType))
4545
: options,
4646
logger: this.environment.logger,
4747
write,

0 commit comments

Comments
 (0)