纱线在“纱线运行测试”命令后给我错误

时间:2020-08-29 17:42:21

标签: javascript reactjs testng yarnpkg package.json

我是新来学习反应测试并为此使用不同来源的人。我发现其中之一是马克西米利安“汉堡制造商”教程的视频,我使用了它。但是在命令运行测试之后,我得到了这个错误,无法解决

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>
  );
}

在进行纱线运行测试后,出现以下错误

enter image description here

为什么会出现此错误,我该如何纠正?

0 个答案:

没有答案