2
0
mirror of synced 2025-02-24 03:58:06 +00:00

Allow running individual unit tests.

This commit is contained in:
ricmoo 2016-08-01 18:34:12 -04:00
parent 97dcd4d450
commit 6440d8e69d
8 changed files with 16 additions and 0 deletions

View File

@ -23,3 +23,5 @@ module.exports = function(test) {
test.done();
};
module.exports.testSelf = module.exports;

View File

@ -70,3 +70,4 @@ module.exports = function(test) {
});
};
module.exports.testSelf = module.exports;

View File

@ -53,3 +53,6 @@ module.exports = function(test) {
test.done();
}
module.exports.testSelf = module.exports;

View File

@ -30,3 +30,5 @@ module.exports = function(test) {
test.done();
};
module.exports.testSelf = module.exports;

View File

@ -15,3 +15,5 @@ module.exports = function(test) {
test.done();
}
module.exports.testSelf = module.exports;

View File

@ -115,3 +115,5 @@ module.exports = function(test) {
});
}
module.exports.testSelf = module.exports;

View File

@ -686,3 +686,5 @@ module.exports = function(test) {
});
}
module.exports.testSelf = module.exports;

View File

@ -78,3 +78,5 @@ module.exports = function(test) {
test.done();
};
module.exports.testSelf = module.exports;