文件名称:jest-bdd:Jest的行为驱动开发包装器
文件大小:41KB
文件格式:ZIP
更新时间:2024-06-01 13:35:37
JavaScript
开玩笑 Jest的行为驱动开发包装器 安装 npm install jest-bdd 用法 排队 const { unit, given, when, then } = require('jest-bdd') unit( given('two numbers', () => { scope.num1 = 3 scope.num2 = 8 }, then('num1 is 3', () => { // check the setup expect(num1).toBe(3) }), when('the numbers are added', () => { // perform the action to test scope.sum = num1 + num2 }, then('the sum i
【文件预览】:
jest-bdd-master
----.gitignore(14B)
----package.json(497B)
----package-lock.json(171KB)
----index.js(4KB)
----README.md(2KB)
----index.spec.js(2KB)