admin管理员组文章数量:1340297
I have a unit test that uses spyOn
method from jest
.
import React from 'react';
import expect from 'jest-matchers';
import PointsAwardingPage from '../PointsAwardingPage';
import PointsAwardingForm from '../children/PointsAwardingForm';
import { shallow } from 'enzyme';
it("should call change method in form", () => {
// given
spyOn(PointsAwardingPage.prototype, 'change').and.callThrough();
const form = shallow(<PointsAwardingPage />).find('PointsAwardingForm');
// when
form.props().onChange();
// then
expect(PointsAwardingPage.prototype.change).toHaveBeenCalled();
});
Everything works well. However, I see the following eslint
error message regarding the spyOn
function call.
spyOn is not defined (no-undef)
.
Which import
statement can I use in order to get rid of this error?
I have a unit test that uses spyOn
method from jest
.
import React from 'react';
import expect from 'jest-matchers';
import PointsAwardingPage from '../PointsAwardingPage';
import PointsAwardingForm from '../children/PointsAwardingForm';
import { shallow } from 'enzyme';
it("should call change method in form", () => {
// given
spyOn(PointsAwardingPage.prototype, 'change').and.callThrough();
const form = shallow(<PointsAwardingPage />).find('PointsAwardingForm');
// when
form.props().onChange();
// then
expect(PointsAwardingPage.prototype.change).toHaveBeenCalled();
});
Everything works well. However, I see the following eslint
error message regarding the spyOn
function call.
spyOn is not defined (no-undef)
.
Which import
statement can I use in order to get rid of this error?
2 Answers
Reset to default 11Although a global
ment is a valid solution, I believe you could simply use jest.spyOn()
instead.
Don't forget to define jest
in your .eslintrc
:
"env": {
"jest": true
}
That's because spyOn
is provided by the test environment - in your case Jest - thus it's not defined by you.
ESLint looks for definitions in your code only.
An easy and safe way to get rid of it is to place a ment /*global spyOn*/
at the top of your test file, which tells ESLint that you have defined it, without actually doing so.
本文标签: javascriptImport spyOn function to get rid of 39not defined39 eslint errorStack Overflow
版权声明:本文标题:javascript - Import `spyOn` function to get rid of 'not defined' eslint error - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743593356a2507486.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论