You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/angular-testing-library/api.mdx
+57Lines changed: 57 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,6 +120,63 @@ await render(AppComponent, {
120
120
})
121
121
```
122
122
123
+
### `bindings`
124
+
125
+
AnarrayofbindingstoapplytothecomponentusingAngular's native bindings API. This provides a more direct way to bind inputs and outputs compared to the `inputs` and `on` options. The bindings API uses Angular's`inputBinding`, `outputBinding`, and`twoWayBinding`functionsfrom`@angular/core`.
126
+
127
+
**default** : `[]`
128
+
129
+
```typescript
130
+
import { inputBinding, outputBinding, twoWayBinding, signal } from '@angular/core'
0 commit comments