Fix tests to use UIA proper
This commit is contained in:
parent
862fb16120
commit
a9419135aa
1 changed files with 5 additions and 2 deletions
|
@ -97,11 +97,14 @@ describe('InteractiveAuthDialog', function() {
|
|||
ReactTestUtils.Simulate.submit(formNode, {});
|
||||
|
||||
expect(doRequest.callCount).toEqual(1);
|
||||
expect(doRequest.calledWithExactly({
|
||||
expect(doRequest.calledWithMatch({
|
||||
session: "sess",
|
||||
type: "m.login.password",
|
||||
password: "s3kr3t",
|
||||
user: "@user:id",
|
||||
identifier: {
|
||||
type: "m.id.user",
|
||||
user: "@user:id",
|
||||
},
|
||||
})).toBe(true);
|
||||
// let the request complete
|
||||
return Promise.delay(1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue