如何在使用cypress运行测试之前运行webpack-dev-server?

bjg7j2ky  于 2023-01-13  发布在  Webpack
关注(0)|答案(1)|浏览(168)

环境

  • 柏树:10.7
  • 网页包:5.74.0
  • 网络包开发服务器:第4章10月1日

问题

CypressError: `cy.visit()` failed trying to load:
http://localhost:3000/

怪不得会出错。
但是,如何启动webpack-dev-server之前运行测试与cypress?

ffvjumwh

ffvjumwh1#

Cypress文档中对此进行了说明。www.example.comhttps://docs.cypress.io/guides/continuous-integration/introduction#Solutions
简而言之:

npm i -g wait-on@latest
npm start & wait-on http://localhost:3000
cypress run

相关问题