我是新来学习反应测试并为此使用不同来源的人。我发现其中之一是马克西米利安“汉堡制造商”教程的视频,我使用了它。但是在命令运行测试之后,我得到了这个错误,无法解决
export default function Profile() {
const ongName = localStorage.getItem("ongName");
const ongID = localStorage.getItem("ongID");
const history = useHistory();
const [incidents, setIncidents] = useState([]);
useEffect(() => {
async function a() {
api.get('profile', {
headers: {
Authorization: ongID,
},
}).then((response) => {
console.log(response.data)
setIncidents(response.data);
});
}
a();
}, [ongID]);
return (
<div className="profile-container">
<ul>
{console.log(incidents),
incidents.map(incident => (
<li key={incident.id}>
<strong>Caso:</strong>
<p>{incident.titulo}</p>
</li>
))}
</ul>
</div>
);
}
在进行纱线运行测试后,出现以下错误
为什么会出现此错误,我该如何纠正?