diff --git a/docs/app/component-testing/angular/api.mdx b/docs/app/component-testing/angular/api.mdx index 1dd878b7fa..5a8b28ef2d 100644 --- a/docs/app/component-testing/angular/api.mdx +++ b/docs/app/component-testing/angular/api.mdx @@ -12,12 +12,6 @@ sidebar_label: API import { mount } from 'cypress/angular' ``` -Be sure to use the `cypress/angular-signals` package if using Angular `17.2` and up and wishing to test `signal()`s within your component tests. - -```js -import { mount } from 'cypress/angular-signals' -``` -
Description | @@ -159,8 +153,16 @@ providers, declarations, imports and even component @Inputs()||||
componentProperties | -Partial<{[P in keyof T]: T[P];}> (optional) | - If using the `cypress/angular-signals` test harness, this type is adapted to `Partial<{[P in keyof T]: T[P] extends InputSignal |
+ + Partial<{[P in keyof T]: T[P] extends InputSignal<infer V> + ? InputSignal<V> | WritableSignal<V> | V : T[P]}> + (optional) + | ++ {' '} + signal based inference types need only apply if you are using signals within + your component tests + |