11 lines
No EOL
340 B
JavaScript
11 lines
No EOL
340 B
JavaScript
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
|
|
)
|
|
}) |