美文网首页
js.Promise

js.Promise

作者: 许道龙 | 来源:发表于2016-07-15 09:48 被阅读0次
    var assert = require('power-assert');
    
    describe('Basic Test', function () {
    
        it("should use `done` for test?", function (done) {
            var promise = Promise.resolve();
            promise.then(function (value) {
                assert(false);
            }).then(done, done);
        });
    
    });
    
    

    第二种写法

    it("should be fail", function () {
        return Promise.resolve().then(function () {
            assert(false);// => 测试失败
        });
    });
    

    相关文章

      网友评论

          本文标题:js.Promise

          本文链接:https://www.haomeiwen.com/subject/tqryjttx.html