Tabcorp / atom-mocha-test-runner

Mocha test runner for Atom Editor
https://atom.io/packages/mocha-test-runner
MIT License
38 stars 18 forks source link

Docking to the right #6

Open rprieto opened 10 years ago

rprieto commented 10 years ago

Investigate if the results window can easily be docked to the right, as a config setting. We'll need to think about what this means if we implement the expand/collapse feature.

rprieto commented 10 years ago

Thinking about this some more, this won't work too well (you usually need the full width for test output).

DinisCruz commented 9 years ago

I would actually like this, since that is a location I usually put my test execution resuls

batjko commented 8 years ago

Same here. I have a widescreen and splitting this way would give me plenty of space back. My problem is that I also use a terminal package (which docks to the bottom), so if I have that open as one does, opening the test results panel below as well is covering most of my actual code editor window.

pmb0 commented 7 years ago

Hotfix, Atom stylesheet:

.mocha-test-runner {
  right: 0;
  position: fixed;
  max-width: 50%;
  height: 100%;
  top: 0;
  z-index: 1;
}
rprieto commented 7 years ago

Thanks @pmb0 that's great! We should be able to add this behind a checkbox.