我有一个小的实用程序功能,正在对React-TS项目的Jest和Enzyme进行一些测试。在该项目的JS文件中,出现以下错误:
"validateUsername" is read-only.
这是实用程序本身:
export const validateUsername = value =>
listUsers()
.then(({ data }) => {
if (Array.isArray(data) && data.find(userData => userData.username === value)) {
throw 'Username already exists';
}
})
.catch(error => {
throw serverErrorResponseUtil(error);
});
这是它的测试:
describe('Validate Username', () => {
const validateUsernameFn = jest.fn();
beforeEach(() => {
validateUsername = validateUsernameFn;
});
it('Should throw an error if the given value exists', async () => {
try {
await validateUsername('username');
} catch (e) {
expect(e).toEqual('Username already exists');
}
});
it('Accept the data if the passed userName is unique', async () => {
expect(() => validateUsername('Username is unique')).not.toThrow();
});
});
我在这里收到错误:
validateUsername = validateUsernameFn;
。事情是这个文件是一个js。为什么我收到有关只读的TS错误。你们可以帮我吗? 最佳答案
您可能已经找到了解决方案,但是问题是先导入validateUsername
,然后在beforeEach()
中重新定义它。
我不知道为什么需要beforeEach()
中的代码,但是如果您想访问初始的validateUsername
+享受模拟的好处,我建议您使用jest.spyOn
。
如果需要,可以在beforeEach()
中清除测试之间的模拟。
关于javascript - ValidateUsername是只读| TS与开玩笑/ enzyme ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56531551/