Skip to content

Commit 5a90c4c

Browse files
committed
fixup! refactor: stronger typing of inputs
1 parent daf716b commit 5a90c4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/testing-library/tests/render.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,15 +563,15 @@ describe('inputs and signals', () => {
563563
// so we are purposely not calling render
564564

565565
const typeTests = [
566-
() => {
566+
async () => {
567567
// @ts-expect-error - myName is a string
568568
await render(InputComponent, {
569569
inputs: {
570570
myName: 123,
571571
},
572572
});
573573
},
574-
() => {
574+
async () => {
575575
// @ts-expect-error - job is not using aliasedInputWithValue
576576
await render(InputComponent, {
577577
inputs: {

0 commit comments

Comments
 (0)