本文整理汇总了TypeScript中@firebase/testing.assertFails函数的典型用法代码示例。如果您正苦于以下问题:TypeScript assertFails函数的具体用法?TypeScript assertFails怎么用?TypeScript assertFails使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了assertFails函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: authedApp
@test
async "should require the user creating a room to be its owner"() {
const alice = authedApp({ uid: "alice" });
// should not be able to create room owned by another user
await firebase.assertFails(alice.ref("rooms/room1").set({ owner: "bob" }));
// should not be able to create room with no owner
await firebase.assertFails(
alice.ref("rooms/room1").set({ members: { alice: true } })
);
// alice should be allowed to create a room she owns
await firebase.assertSucceeds(
alice.ref("rooms/room1").set({ owner: "alice" })
);
}
示例2: authedApp
@test
async "should not let one user steal a room from another user"() {
const alice = authedApp({ uid: "alice" });
const bob = authedApp({ uid: "bob" });
await firebase.assertSucceeds(
bob
.collection("rooms")
.doc("snow")
.set({
owner: "bob",
topic: "All Things Snowboarding"
})
);
await firebase.assertFails(
alice
.collection("rooms")
.doc("snow")
.set({
owner: "alice",
topic: "skiing > snowboarding"
})
);
}