From 31fb9d0d52eceeca9cdc3fa637f16e06ad2faf4b Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 5 Oct 2024 11:21:34 +0200 Subject: [PATCH] docs: mention autoDetectChanges parameter default value (#58092) It was unclear whether the parameter was necessary, as its default value was not mentioned in the jdsoc. PR Close #58092 --- packages/core/testing/src/component_fixture.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/core/testing/src/component_fixture.ts b/packages/core/testing/src/component_fixture.ts index a9f7ee6ee35..8793bcfce4f 100644 --- a/packages/core/testing/src/component_fixture.ts +++ b/packages/core/testing/src/component_fixture.ts @@ -111,6 +111,8 @@ export abstract class ComponentFixture { * Set whether the fixture should autodetect changes. * * Also runs detectChanges once so that any existing change is detected. + * + * @param autoDetect Whether to autodetect changes. By default, `true`. */ abstract autoDetectChanges(autoDetect?: boolean): void;