当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript testing.assertFails函数代码示例

本文整理汇总了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" })
    );
  }
开发者ID:firebase,项目名称:quickstart-nodejs,代码行数:15,代码来源:test.ts

示例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"
        })
    );
  }
开发者ID:firebase,项目名称:quickstart-nodejs,代码行数:25,代码来源:test.ts


注:本文中的@firebase/testing.assertFails函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。