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 3dee128 commit 767d604Copy full SHA for 767d604
test/test.js
@@ -271,12 +271,6 @@ describe('proxy', function describeproxy() {
271
});
272
273
it('avoids globs', (done) => {
274
- if (!unix()) {
275
- // See the TODO below.
276
- console.log('Skipping unix-only test case');
277
- done();
278
- return;
279
- }
280
const fa = 'a.txt';
281
const fglob = '*.txt';
282
shell.exec('echo hello world').to(fa);
@@ -287,7 +281,6 @@ describe('proxy', function describeproxy() {
287
} else {
288
shell.del(fglob);
289
283
}
290
- // TODO(nfischer): this line fails on Windows
291
284
fs.existsSync(fglob).should.equal(false);
292
285
shell.cat(fa).toString().should.equal(`hello world${os.EOL}`);
293
286
0 commit comments