Merge pull request +6600 from c9/schema-index

Schema index
pull/51/head
Fabian Jakobs 2015-03-23 12:27:08 +01:00
commit 504f68ac0a
1 zmienionych plików z 2 dodań i 2 usunięć

4
node_modules/c9/inline-mocha.js wygenerowano vendored
Wyświetl plik

@ -1,10 +1,10 @@
module.exports = function(module, reporter) {
module.exports = function(module, reporter, options) {
if (typeof module !== "undefined" && module === require.main) {
if (typeof global.onload === "undefined")
global.onload = undefined;
var file = module.filename;
var Mocha = require("mocha");
var mocha = new Mocha();
var mocha = new Mocha(options || {});
mocha.reporter(reporter || "spec");
var suite = mocha.suite;
suite.emit('pre-require', global, file, mocha);