forked from cadence/out-of-your-element
send sim messages to the proper rooms
This commit is contained in:
parent
7526d63690
commit
da6603d258
10 changed files with 38 additions and 10 deletions
11
matrix/read-registration.test.js
Normal file
11
matrix/read-registration.test.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
const {test} = require("supertape")
|
||||
const assert = require("assert")
|
||||
const reg = require("./read-registration")
|
||||
|
||||
test("reg: has necessary parameters", t => {
|
||||
const propertiesToCheck = ["sender_localpart", "id", "as_token", "namespace_prefix"]
|
||||
t.deepEqual(
|
||||
propertiesToCheck.filter(p => p in reg),
|
||||
propertiesToCheck
|
||||
)
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue