Src & Spec dirs now have same structure; console/, core/, and html/

This commit is contained in:
Davis W. Frank
2011-06-08 18:30:35 -07:00
parent 4c6dafa3f5
commit 86b095e5a4
26 changed files with 77 additions and 37 deletions

View File

@@ -110,7 +110,7 @@ process.argv.forEach(function(arg) {
}
});
var specs = jasmine.getAllSpecFiles(__dirname + '/suites', new RegExp(".js$"));
var specs = jasmine.getAllSpecFiles(__dirname, new RegExp(".js$"));
var domIndependentSpecs = [];
for (var i = 0; i < specs.length; i++) {
if (fs.readFileSync(specs[i], "utf8").indexOf("document.createElement") < 0) {