We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a90c4c commit 058386dCopy full SHA for 058386d
projects/testing-library/tests/render.spec.ts
@@ -563,6 +563,14 @@ describe('inputs and signals', () => {
563
// so we are purposely not calling render
564
565
const typeTests = [
566
+ async () => {
567
+ // OK:
568
+ await render(InputComponent, {
569
+ inputs: {
570
+ myName: 'OK',
571
+ },
572
+ });
573
574
async () => {
575
// @ts-expect-error - myName is a string
576
await render(InputComponent, {
@@ -571,6 +579,14 @@ describe('inputs and signals', () => {
579
},
580
});
581
582
583
584
585
586
+ job: aliasedInputWithValue('OK'),
587
588
589
590
591
// @ts-expect-error - job is not using aliasedInputWithValue
592
0 commit comments