postcat/e2e
2023-02-10 20:16:44 +08:00
..
api.t fix: fix some e2e test 2023-02-10 20:16:44 +08:00
env.t fix: fix some e2e test 2023-02-10 20:16:44 +08:00
package.json Feat/new api (#218) 2023-01-20 19:36:09 +08:00
playwright.config.js feat: create e2e config 2022-08-23 18:09:42 +08:00
README.md feat: add doc about e2e 2023-01-04 19:03:40 +08:00
tifa.config.js test: e2e test all pass 2023-01-04 18:47:23 +08:00
ws.t test: e2e test all pass 2023-01-04 18:47:23 +08:00
yarn.lock Feat/new api (#218) 2023-01-20 19:36:09 +08:00

使用步骤

环境配置

  1. 全局安装 ark 工具包:yarn add ark-pkg --global
  2. 在 /e2e 目录下安装playwright的相关依赖yarn

另:为了让测试用例有语法高亮,请将其命名为 .t 后缀。

运行

运行已有的所有测试用例,在 /e2e 目录下执行:

$ ark mikasa ./ # 编译用例
$ yarn test     # 运行用例

即可运行并打印出测试报告

另一种情况是,需要单独运行某一个用例,在这种模式下,编译后的代码可以使用 NodeJS 直接运行,多数用在排查问题或写用例时单独看运行效果。

$ ark mikasa ./ -d # debug 模式编译
$ node xxx.test.js