ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

SAP 电商云 Spartacus UI CI e2e-cypress.sh 脚本文件分析

2021-12-28 21:31:35  阅读:243  来源: 互联网

标签:CI 电商 run -- ci yarn should bulk SAP


(1) yarn install
(2) 进到 storefrontapp-e2e-cypress 目录再次 yarn install
(3) yarn build:libs

脚本命令:

cypress run --config-file cypress.ci.json --record --key $CYPRESS_KEY --tag “2011,b2c,all,parallel” --p
arallel --group B2C --ci-build-id $TRAVIS_BUILD_ID --spec “cypress/integration/!(vendor|b2b|ssr)/**/*.e2e
-spec.ts”

record option 代表视频记录,这个语法在官方文档 可以找到。

export 命令本身不需要使用 $ 符号,但是在脚本文件里使用变量时,需要加上 $ 符号。

Bash export 命令帮助我们导出环境变量,以便它们在所有子进程、shell 和命令中可用。

此外,export 命令和其他相关命令的不同命令行选项提供了跨不同 shell 和 bash 脚本定义、导出和使用 bash 变量的各种方法。

关于 bash 里特殊符号 $ 的用法,参考这个链接

yarn e2e:run:ci"${SUITE}"

bash 里圆括号的语法

这里的 SUITE 是 script 里自定义的变量。

SUITE 值可能为下列 e2e:run:ci 冒号后的值,比如 ssr,b2b 等等。

取决于使用者按照什么样的命令行参数传递 --suite

使用 --suite 或者 -s 参数格式均可,默认参数为 b2c:

最后先 yarn start,再 yarn e2e:run:ci

我们就看这个默认的 b2b script:

yarn --cwd ./projects/storefrontapp-e2e-cypress run cy:run:ci:b2b\

使用 --cwd 避免脚本文件里出现不必要的 cd 操作符。参考这个操作符的官方文档

cy:run:ci:b2b - 最后执行的如下脚本:

–tag 用于最后在 dashboard 结果列表里查看。

–group 用于在一个测试里将记录后的结果放置于同一组内。

开始执行测试了:

一些测试结果:

B2B - Bulk Pricing
Mobile
Check bulk pricing table
(node:8855) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
✓ should render pricing table for products that contain bulk prices (5819ms)
✓ should checkout using the proper bulk price based on quantity (1604ms)
✓ should NOT render pricing table for products that DO NOT contain bulk prices (736ms)
✓ should verify lowering the quantity also lowers the discount (2262ms)
✓ should verify increasing the quantity also increases the discount (1904ms)
✓ should verify checking out a bulk priced item and a regular product (7819ms)
Desktop
Check bulk pricing table
✓ should render pricing table for products that contain bulk prices (963ms)
✓ should checkout using the proper bulk price based on quantity (1307ms)
✓ should NOT render pricing table for products that DO NOT contain bulk prices (756ms)
✓ should verify lowering the quantity also lowers the discount (2282ms)
✓ should verify increasing the quantity also increases the discount (1941ms)
✓ should verify checking out a bulk priced item and a regular product (9332ms)

在执行日志的末尾,看到了 command exited with 0 的提示,说明执行成功。

更多Jerry的原创文章,尽在:“汪子熙”:

标签:CI,电商,run,--,ci,yarn,should,bulk,SAP
来源: https://blog.csdn.net/i042416/article/details/122086154

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有