nanotest:使用最小的异步助手和自动计数断言结果进行测试

时间:2024-07-17 13:16:20
【文件属性】:

文件名称:nanotest:使用最小的异步助手和自动计数断言结果进行测试

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-17 13:16:20

JavaScript

纳米测试 最简单的 API 支持, test():用于写测试同步。 测试(完成):用于写测试异步。 assert.count():用于执行断言计数的自动计数。 如何使用 应用程序接口 将带有断言的函数传递给test() 。 test ( function ( ) { // sync test } ) ( ) ; 获取done从test()并将其用于异步测试。 test ( function ( done ) { // async test with done } ) ; nanotest 注入assert.count()并计算称为 count 的断言。 您可以使用assert.count()检查该计数。 test ( function ( ) { // sync test * 10 assert . count ( 10 ) ; } ) ( ) ; 同


【文件预览】:
nanotest-master
----index.js(4KB)
----package.json(546B)
----test()
--------index.js(366B)
--------test.sync.js(320B)
--------mix()
--------test.async.js(725B)
----README.md(2KB)

网友评论