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


TypeScript assert.equal方法代码示例

本文整理汇总了TypeScript中chai.assert.equal方法的典型用法代码示例。如果您正苦于以下问题:TypeScript assert.equal方法的具体用法?TypeScript assert.equal怎么用?TypeScript assert.equal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在chai.assert的用法示例。


在下文中一共展示了assert.equal方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

 it("should create a bookmark with the correct attributes on the text element", () => {
     const newJson = Utility.jsonify(bookmark);
     assert.equal(JSON.stringify(newJson.text.root[1].root[1]), JSON.stringify("Internal Link"));
 });
开发者ID:dolanmiu,项目名称:docx,代码行数:4,代码来源:bookmark.spec.ts

示例2: it

 it('leap year', function () {
   assert.equal(moment([2010, 0, 1]).isLeapYear(), false, '2010');
   assert.equal(moment([2100, 0, 1]).isLeapYear(), false, '2100');
   assert.equal(moment([2008, 0, 1]).isLeapYear(), true, '2008');
   assert.equal(moment([2000, 0, 1]).isLeapYear(), true, '2000');
 });
开发者ID:OlegDubrovskyi,项目名称:ngx-bootstrap,代码行数:6,代码来源:leapyear.spec.ts

示例3: it

    it('should call Terminal.setOption with correct params', () => {
      let options = {};
      let terminal = {
        setOption: (option, value) => options[option] = value
      };
      let inputHandler = new InputHandler(terminal);

      inputHandler.setCursorStyle([0]);
      assert.equal(options['cursorStyle'], 'block');
      assert.equal(options['cursorBlink'], true);

      options = {};
      inputHandler.setCursorStyle([1]);
      assert.equal(options['cursorStyle'], 'block');
      assert.equal(options['cursorBlink'], true);

      options = {};
      inputHandler.setCursorStyle([2]);
      assert.equal(options['cursorStyle'], 'block');
      assert.equal(options['cursorBlink'], false);

      options = {};
      inputHandler.setCursorStyle([3]);
      assert.equal(options['cursorStyle'], 'underline');
      assert.equal(options['cursorBlink'], true);

      options = {};
      inputHandler.setCursorStyle([4]);
      assert.equal(options['cursorStyle'], 'underline');
      assert.equal(options['cursorBlink'], false);

      options = {};
      inputHandler.setCursorStyle([5]);
      assert.equal(options['cursorStyle'], 'bar');
      assert.equal(options['cursorBlink'], true);

      options = {};
      inputHandler.setCursorStyle([6]);
      assert.equal(options['cursorStyle'], 'bar');
      assert.equal(options['cursorBlink'], false);

    });
开发者ID:dirkakrid,项目名称:xterm.js,代码行数:42,代码来源:InputHandler.test.ts

示例4: it

 it("should create have valid properties", () => {
     const stringifiedJson = JSON.stringify(paragraph);
     const newJson = JSON.parse(stringifiedJson);
     assert.equal(newJson.root[0].rootKey, "w:pPr");
 });
开发者ID:dolanmiu,项目名称:docx,代码行数:5,代码来源:paragraph.spec.ts


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