How show test suites and case in allure via tree?

时间:2019-04-05 13:34:24

标签: javascript node.js mocha allure

Here is test code:

var assert = require('assert');
describe('Array', function() {
  describe('#indexOf()', function() {
    it('should return -1 when the value is not present', function() {
      assert.equal([1, 2, 3].indexOf(4), -1);
    });
  });
});

Which is rendered as:

enter image description here

是否可以添加配置并在2个级别上建立测试用例/套件组:

enter image description here

例如Suites标签应类似于Behaviours。 (后者用于显示其他数据)。

0 个答案:

没有答案