Karma 4.4.1和大括号3.0.2给出了意外的标记

问题描述 投票:0回答:1

[从Angular2到Angular8的粗略迁移之后,我现在正在审查所有在迁移之前运行良好的业力测试。

对于版本,我有:

  • npm v6.11.2

  • 节点v8.0.0

  • karma v4.4.1

  • 大括号v3.0.2

我不知道它是否相关,但我正在使用Jasmine和Webpack

现在,每当我尝试启动任何业力命令时(即使尝试karma --version,甚至在配置文件中出现明显的语法错误时,我也会::

path/to/node_modules/karma/node_modules/braces/lib/compile.js:39
      let range = fill(...args, { ...options, wrap: false, toRegex: true });
                                  ^^^

SyntaxError: Unexpected token ...
    at createScript (vm.js:74:10)
    at Object.runInThisContext (vm.js:116:10)
    at Module._compile (module.js:533:28)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (path/to/node_modules/karma/node_modules/braces/index.js:4:17)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)

我尝试了其他命令,没有任何改变。我尝试了不同版本的业力或牙套,但没有任何变化。我也尝试破坏一些配置文件,但似乎在尝试获取它之前就失败了。

如果有人确实对如何使其再次工作有任何想法,请随意给出提示!

angular karma-jasmine
1个回答
0
投票

我使用Git预推钩中的Karma脚本时遇到了相同的错误,由于此post,我可以解决此问题>

哪里说:

# magic line to ensure that we're always inside the root of our application,
# no matter from which directory we'll run script
cd "${0%/*}/.."
© www.soinside.com 2019 - 2024. All rights reserved.