/nodejs-testing

e2e and unit test example by nodejs

Primary LanguageTypeScriptApache License 2.0Apache-2.0

nodejs-testing

单元测试和点对点测试

开发环境

开始前,请确保你的电脑具备以下依赖

# 依赖安装
yarn

VSCode 插件

目录结构

单元测试匹配规则为**/*.spec.ts,点对点测试匹配规则为e2e/**/*.test.ts

# 运行单元测试
yarn test:unit

# 运行点对点测试
yarn test:e2e

前置知识

  • TypeScript 编程语言(了解基本语法)
  • Nodejs 模块化npm 包管理(了解基本概念)
  • Jest 测试框架(熟悉常用 API)
  • Playwright 点对点测试框架(熟悉常用 API)