Make apps/web/playwright comply with strict mode (#34403)
* Make apps/web/playwright comply with strict mode Otherwise it sometimes fails to compile matrix-js-sdk as strict mode & noImplicitAny both impact how overloads are asserted * Iterate
This commit is contained in:
@@ -65,7 +65,7 @@ test.describe("Landmark navigation tests", () => {
|
||||
await cli.invite(bobRoom.room_id, bob);
|
||||
},
|
||||
{
|
||||
bob: bob.credentials.userId,
|
||||
bob: bob.credentials!.userId,
|
||||
},
|
||||
);
|
||||
|
||||
@@ -118,7 +118,7 @@ test.describe("Landmark navigation tests", () => {
|
||||
await cli.invite(bobRoom.room_id, bob);
|
||||
},
|
||||
{
|
||||
bob: bob.credentials.userId,
|
||||
bob: bob.credentials!.userId,
|
||||
},
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user