Lines Matching defs:Test
9 // This script loads all the test/* files into a very small context that
12 // Once all files are loaded it runs the specific test on the command line.
16 // nodejs-isms away from the test code and isolate implementation details away
20 var Test = require('./test.js');
31 function bootstrap(test) {
34 callbacks.push(test.spawnBot.bind(test, "", bots[i]));
36 test.wait(callbacks, func.bind(test, test));
52 fs.readdir('test', function (error, list) {
62 foreachCallback('test/' + filename, iterateNextFile);
76 console.log("Running test: " + testname);
77 var test = new Test();
78 testSuites[testname](test);
80 console.log("Unknown test: " + testname);