mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
//executes all the unit tests
|
|
var fs = require('fs');
|
|
var files = fs.readdirSync(__dirname + '/test/unit');
|
|
files.forEach(function(file){
|
|
require(__dirname + '/test/unit/' + file.split('.js') [0]);
|
|
});
|