本文介绍了Casperjs 1.1不会生成XUnit xml文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在运行CasperJS测试。我试图在输出渲染中生成xUnit xml文件。但是,一旦发生单个失败,此操作将失败。

I am running CasperJS tests. I tried to generate xUnit xml file in output rendering. But this fails when ever a single FAILure occurs. Actually the executing stopped when a single FAIL occurs.

这是我正在处理的脚本

casper.test.begin('Site login', '', function suite(test) {
   casper.start(mysite, function () {
      test.assertExists('form#index', "Login Form found"); //Pass
      test.assertExists('form#index1', "Login Form found"); //Fail
   });

   casper.run(function (){
      test.done();
      test.renderResults(true, 0, 'test1.xml');
   });
});


推荐答案

尝试使用与-xunit =<文件名> 选项。

这篇关于Casperjs 1.1不会生成XUnit xml文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 14:19