前端自动化测试解决方案探析(3)

发表于:2016-11-23来源:ouven作者:ouven点击数: 标签:前端
输出为: $ ./node_modules/mocha/bin/mocha Array #indexOf() ? should return -1 when the value is not present 1 passing (9ms) 同时,mocha支持异步和Promise。 describe ( #find() , function ()

  输出为:

$ ./node_modules/mocha/bin/mocha

  Array
    #indexOf()
      ? should return -1 when the value is not present


  1 passing (9ms)

  同时,mocha支持异步和Promise。

describe('#find()', function() {
    it('respond with matching records', function(done) {
        db.find({type: 'User'}, function(err, res) {
            if (err) return done(err);
            res.should.have.length(3);
            done();
            });
        });
    });
});

原文转自:http://jixianqianduan.com/frontend-javascript/2016/11/22/front-end-auto-test.html