Skip test that flakes on Linux only

This commit is contained in:
Daniel Imms
2020-06-15 08:44:50 -07:00
parent cf7b620598
commit bf9991ad52

View File

@@ -49,7 +49,7 @@ import { doesNotThrow, equal, ok, deepEqual, throws } from 'assert';
doesNotThrow(terminal.sendText.bind(terminal, 'echo "foo"'));
});
test('echo works in the default shell', (done) => {
(process.platform === 'linux' ? test.skip : test)('echo works in the default shell', (done) => {
disposables.push(window.onDidOpenTerminal(term => {
try {
equal(terminal, term);