文件名称:node_testhelper:node.js 的测试助手
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-26 05:22:52
JavaScript
测试助手 这个项目的灵感来自 Python minitest 的一些可以在测试中使用的有用方法。 以下是有用的功能: p, pp, pl, ppl github: : 作者 季柯林 如何安装 npm install testhelper 如何使用 p,打印标题。 此函数将打印变量名称作为标题。 代码: obj = {foo:"bar", baz: {aa:1, bb:2}}; // add a title 'obj' automatically. obj.p() 打印结果: obj : { foo: 'bar', baz: { aa: 1, bb: 2 } } pl,打印标题和代码位置。 这个函数就像 pt,但会在第一行打印代码位置。 并且一些编辑器支持转到该文件的行,例如 Sublime2。 注意:它会在位置信息之前打印一个空行。 代码: obj = {foo:"b
【文件预览】:
node_testhelper-master
----.gitignore(543B)
----package.json(439B)
----how_publish.txt(337B)
----node_testhelper.TODO(647B)
----README.md(2KB)
----lib()
--------testhelper.js(5KB)
--------pretty_print_string.js(3KB)
--------stack_info.js(3KB)
--------original_this.js(2KB)
----CHANGES.md(832B)
----test()
--------test_publish.js(255B)
--------test_testhelper.js(596B)