为什么Mocha的官方文档在函数名称之前使用数字符号?

时间:2018-10-02 03:12:17

标签: mocha

https://mochajs.org/中,他们在#中的每个函数名称之前使用数字符号it()。这是该网站的示例:

describe('User', function() {
  describe('#save()', function() { // <-- uses '#' before 'save()'
    it('should save without error', function(done) {
      var user = new User('Luna');
      user.save(function(err) {
        if (err) done(err);
        else done();
      });
    });
  });
});

有这样做的理由吗?在我的IDE(WebStorm)上,数字符号似乎毫无用处。

Screenshot of the Run sidebar inside WebStorm

由于测试描述中的括号表明这是一个函数,因此我认为不需要数字符号。但是在其他地方有用途吗?

0 个答案:

没有答案