Can I run only one method in a testcase?
Open
- Dominant language
- JavaScript
- Stars
- 1.9k
- Forks
- 359
- PR merge metrics
- No merged PRs in 30d
Description
Test case example as follows (mytest.js):
exports["test1f"] = function(test){
test.expect(1);
test.ok(true, "this assertion should pass");
test.done();
};
exports["test2"] = function(test){
test.ok(true, "this assertion should pass");
test.done();
};
I hope that I can run test2 only like this:
nodeunit test.js test2
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.