业力/茉莉花测试不会进入它的阻碍

时间:2015-06-23 01:28:20

标签: javascript angularjs karma-runner

我基本上遵循了这些说明:

http://ericnish.io/blog/set-up-jasmine-and-karma-for-angularjs

用茉莉花设置业力。我设置了示例测试,我得到了这个结果:

Executed 0 of 0 ERROR (0.001 secs / 0 secs)

为了调试它,我将警报放入示例测试中,如下所示:

describe('example test', function() {
    alert('example!');
    it('should be true', function() {
        alert('example in it caluse!');
        expect('foo').toBe('foo');
    }); });

我只看到alert('example!');而非alert('example in it caluse!');

addum:

我想知道发生了什么 - 或者至少是这个难题的表面部分。事实证明,这种奇怪的行为只发生在我包含angular-scenario.js时 - 我能够做到这一点:

   exclude: [
        'vendor/assets/javascripts/angular-scenario.js'
    ], 

解决这个问题 - 但仍然是神秘的原因!

0 个答案:

没有答案