Landing off the field for test suite

This commit is contained in:
David Dias 2015-07-10 18:47:43 -07:00
parent 587e550197
commit 31d079cfa9
2 changed files with 12 additions and 0 deletions

9
tests/base-test.js Normal file
View File

@ -0,0 +1,9 @@
module.exports.all = function (test, common) {
test('see if this works', function (t) {
common.setup(test, function (err, muxer) {
t.ifError(err, 'Should not throw')
// write test here
t.end()
})
})
}

3
tests/index.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = function (test, common) {
require('./base-test.js').all(test, common)
}