以下错误是什么意思,我该如何解决?
$ npm test
> [email protected] test /Users/mishamoroshko/location-autosuggest
> mocha test --compilers js:babel/register
compareKeys()
should return -1
1) when first key is different
0 passing (301ms)
1 failing
1) compareKeys() should return -1 when first key is different:
TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
at Context.<anonymous> (compare-keys/compare-keys.test.js:3:16)
以下是相关部分:
比较键/compare-keys.test.js
1. 'use strict';
2.
3. import { expect } from 'chai';
package.json
"scripts": {
"test": "mocha test --compilers js:babel/register"
}
.babelrc
{
"stage": 0
}
mocha.opts
我没有。
版本
最佳答案
从ES5开始,在严格模式下,您不能使用callee
等参数的某些属性。
参见callee page上的MDN免责声明:
ECMAScript(ES5)的第五版禁止使用arguments.callee()
在严格模式下。通过以下两种方式避免使用arguments.callee()
函数表达式名称或使用函数声明,其中
函数必须自行调用。chai
可以使用以下属性之一。
关于mocha - TypeError:严格模式函数或调用它们的参数对象上可能无法访问'caller','callee'和'arguments'属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30663989/