Ember.js 由于 PhantomJS 语法错误导致测试失败

Ember.js tests failure due to PhantomJS syntax error

我在 运行 我在 Ember 应用程序中进行测试时遇到此错误。显然存在语法错误 (Unexpected token ','),其发生方式导致测试环境加载失败,因此导致每个测试都失败。

$ ember test
version: 1.13.13
Built project successfully. Stored in "/Users/ernesto/code/projects/my-app/frontend/tmp/class-tests_dist-cqvfx9XF.tmp".
not ok 1 PhantomJS 2.0 - global failure
    ---
        actual: >
            null
        message: >
            SyntaxError: Unexpected token ','
        Log: |
    ...
not ok 2 PhantomJS 2.0 - global failure
    ---
        actual: >
            null
        message: >
            Error: Could not find module `frontend/config/environment` imported from `frontend/tests/helpers/resolver`
        Log: |
    ...
not ok 3 PhantomJS 2.0 - global failure
    ---
        actual: >
            null
        message: >
            Error: Assertion Failed: The tests file was not loaded. Make sure your tests index.html includes "assets/tests.js".
        Log: |
    ...
not ok 4 PhantomJS 2.0 - Integration | Component | dropdown filter: it renders all given options and the empty option
    ---
        actual: >
            null
        message: >
            Promise rejected before it renders all given options and the empty option: you must set a resolver with `testResolver.set(resolver)`
        Log: |
    ...

注意上面的第一个错误,即 global failure 然后报告意外的逗号标记。在那之后,所有剩余的测试都会失败,要么是因为它们无法导入存在的文件,要么是因为 testResolver 未设置,或者其他原因。

事情是一切都在浏览器中正确运行。看来这与 PhantomJS 在某处对某些语法更加严格有关。但是错误消息中没有指示这个流氓逗号所在的位置。

谁能给我一些关于如何找到这个逗号或以某种方式解决这个错误的提示?提前致谢。

PhantomJS 在对象具有重复的 属性 个名称时抛出语法错误,例如:

var object = { foo: 1, foo: 2 };

大多数浏览器不会将此视为语法错误,而只会使用最后的 属性 定义。