fix monitor test

pull/313/head
nightwing 2016-06-06 01:07:20 +04:00
rodzic 0175a9d88d
commit ff92b4e3d8
3 zmienionych plików z 8 dodań i 2 usunięć

Wyświetl plik

@ -114,7 +114,7 @@
"c9.ide.run.debug.xdebug": "#9956689819",
"c9.ide.save": "#25a63f31e2",
"c9.ide.scm": "#637a68cd04",
"c9.ide.terminal.monitor": "#affa33572f",
"c9.ide.terminal.monitor": "#5a6a54ce24",
"c9.ide.test": "#102942ae4e",
"c9.ide.test.mocha": "#38151a98c3",
"c9.ide.theme.flat": "#81dadeee55",

Wyświetl plik

@ -13,7 +13,6 @@ require(["lib/architect/architect", "lib/chai/chai", "/vfs-root"], function (arc
debug: true,
hosted: true,
local: false,
davPrefix: "/"
},
"plugins/c9.core/ext",
@ -127,6 +126,7 @@ require(["lib/architect/architect", "lib/chai/chai", "/vfs-root"], function (arc
// Kill connection
session.pty.kill();
session.doc.editor.focus();
});
it.skip('should reconnect when the session has been lost', function(done) {

Wyświetl plik

@ -530,6 +530,12 @@ require([
x.unregister = function(){};
return x;
})(),
"terminal.monitor.message_view": (function(){
var x = new EventEmitter();
x.show = function(){};
x.hide = function(){};
return x;
})()
});
};