We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86061a6 commit 6b40e53Copy full SHA for 6b40e53
server/gritty.js
@@ -44,7 +44,9 @@ module.exports = (options = {}) => {
44
const router = Router();
45
const {prefix = '/gritty'} = options;
46
47
- router.route(`${prefix}/*`).get(terminalFn(options))
+ router
48
+ .route(`${prefix}/*`)
49
+ .get(terminalFn(options))
50
.get(staticFn);
51
52
return router;
test/client/gritty.js
@@ -46,6 +46,7 @@ mock('@xterm/xterm-addong-webl', {
});
const gritty = require('../../client/gritty');
+
const {
_onConnect,
_onDisconnect,
0 commit comments