kopia lustrzana https://github.com/c9/core
fix monitor test
rodzic
0175a9d88d
commit
ff92b4e3d8
|
@ -114,7 +114,7 @@
|
||||||
"c9.ide.run.debug.xdebug": "#9956689819",
|
"c9.ide.run.debug.xdebug": "#9956689819",
|
||||||
"c9.ide.save": "#25a63f31e2",
|
"c9.ide.save": "#25a63f31e2",
|
||||||
"c9.ide.scm": "#637a68cd04",
|
"c9.ide.scm": "#637a68cd04",
|
||||||
"c9.ide.terminal.monitor": "#affa33572f",
|
"c9.ide.terminal.monitor": "#5a6a54ce24",
|
||||||
"c9.ide.test": "#102942ae4e",
|
"c9.ide.test": "#102942ae4e",
|
||||||
"c9.ide.test.mocha": "#38151a98c3",
|
"c9.ide.test.mocha": "#38151a98c3",
|
||||||
"c9.ide.theme.flat": "#81dadeee55",
|
"c9.ide.theme.flat": "#81dadeee55",
|
||||||
|
|
|
@ -13,7 +13,6 @@ require(["lib/architect/architect", "lib/chai/chai", "/vfs-root"], function (arc
|
||||||
debug: true,
|
debug: true,
|
||||||
hosted: true,
|
hosted: true,
|
||||||
local: false,
|
local: false,
|
||||||
davPrefix: "/"
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"plugins/c9.core/ext",
|
"plugins/c9.core/ext",
|
||||||
|
@ -127,6 +126,7 @@ require(["lib/architect/architect", "lib/chai/chai", "/vfs-root"], function (arc
|
||||||
|
|
||||||
// Kill connection
|
// Kill connection
|
||||||
session.pty.kill();
|
session.pty.kill();
|
||||||
|
session.doc.editor.focus();
|
||||||
});
|
});
|
||||||
|
|
||||||
it.skip('should reconnect when the session has been lost', function(done) {
|
it.skip('should reconnect when the session has been lost', function(done) {
|
||||||
|
|
|
@ -530,6 +530,12 @@ require([
|
||||||
x.unregister = function(){};
|
x.unregister = function(){};
|
||||||
return x;
|
return x;
|
||||||
})(),
|
})(),
|
||||||
|
"terminal.monitor.message_view": (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
x.show = function(){};
|
||||||
|
x.hide = function(){};
|
||||||
|
return x;
|
||||||
|
})()
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue