4

在 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 在某些地方的语法更加严格有关。但是错误消息中没有指示该流氓逗号的位置。

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

4

1 回答 1

6

当对象具有重复的属性名称时,PhantomJS 会引发语法错误,例如:

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

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

于 2016-03-27T06:32:51.937 回答