674da96a59
This connects Xterm.js to a Nomad exec websocket so people can interact on clients via live sessions. There are buttons on job, allocation, task group, and task detail pages that open a popup that lets them edit their shell command and start a session. More is to come, as recorded in issues.
11 lines
419 B
JavaScript
11 lines
419 B
JavaScript
import escapeTaskName from 'nomad-ui/utils/escape-task-name';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | escape-task-name', function() {
|
|
test('it escapes task names for the faux exec CLI', function(assert) {
|
|
assert.equal(escapeTaskName('plain'), 'plain');
|
|
assert.equal(escapeTaskName('a space'), 'a\\ space');
|
|
assert.equal(escapeTaskName('dollar $ign'), 'dollar\\ \\$ign');
|
|
});
|
|
});
|