mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 17:25:50 +03:00
apparently I was doing array bracket spacing wrong
This commit is contained in:
parent
3ab5acde9d
commit
6b815327a0
1 changed files with 4 additions and 4 deletions
|
@ -97,7 +97,7 @@ describe('Terms', function() {
|
|||
Matrix.SERVICE_TYPES.IM,
|
||||
'https://imone.test',
|
||||
'a token token',
|
||||
[ "http://example.com/one" ],
|
||||
["http://example.com/one"],
|
||||
)).toBeTruthy();
|
||||
});
|
||||
|
||||
|
@ -132,7 +132,7 @@ describe('Terms', function() {
|
|||
Matrix.SERVICE_TYPES.IM,
|
||||
'https://imone.test',
|
||||
'a token token',
|
||||
[ "http://example.com/one", "http://example.com/two" ],
|
||||
["http://example.com/one", "http://example.com/two"],
|
||||
)).toBeTruthy();
|
||||
});
|
||||
|
||||
|
@ -182,13 +182,13 @@ describe('Terms', function() {
|
|||
Matrix.SERVICE_TYPES.IM,
|
||||
'https://imone.test',
|
||||
'a token token',
|
||||
[ "http://example.com/one" ],
|
||||
["http://example.com/one"],
|
||||
)).toBeTruthy();
|
||||
expect(MatrixClientPeg.get().agreeToTerms.calledWith(
|
||||
Matrix.SERVICE_TYPES.IM,
|
||||
'https://imtwo.test',
|
||||
'a token token',
|
||||
[ "http://example.com/two" ],
|
||||
["http://example.com/two"],
|
||||
)).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue