武器
公寓和住宅管理系统
设置
安装依赖项
npm install
设置环境变量
创建一个cypress.env.json并添加以下内容以在本地测试cypress。
{
" BASE_URL " : " http://localhost:3000 " ,
" BACKEND_URL " : " http://localhost:3005 " ,
" TEST_ADMIN_PASSWORD " : " adminPw1 "
}
创建一个.env并添加REACT_APP_URL 。
REACT_APP_URL = "http://localhost:3005"
入门
启动应用
npm start
运行测试
npm test
编译应用
npm run build
1