{{o.content | formatHtml}}
{{o.author.name}}
{{o.pubDate | formatDate}}
{{parseInt(o.viewCount) | bigNumberTransform}}
Benv是node.js开发的无界面浏览器测试环境,用于测试客户端代码。 示例代码: var benv = require('benv');beforeEach(function(done) { benv.setup(function() { benv.expose({ $: benv.require('../client/vendor/zepto.js', 'Zepto') }); done(); }); });afterEach(function() { benv.teardown(); });describe('app.js', function() { it('renders Wat', function() { require('../client/app.js'); $('body').html().should...