Skip to content

Commit 767d604

Browse files
committed
test: enable glob test case on Windows
No change to logic. This test case seems to pass on GitHub Actions so I think we can just reenable this.
1 parent 3dee128 commit 767d604

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

test/test.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,6 @@ describe('proxy', function describeproxy() {
271271
});
272272

273273
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-
}
280274
const fa = 'a.txt';
281275
const fglob = '*.txt';
282276
shell.exec('echo hello world').to(fa);
@@ -287,7 +281,6 @@ describe('proxy', function describeproxy() {
287281
} else {
288282
shell.del(fglob);
289283
}
290-
// TODO(nfischer): this line fails on Windows
291284
fs.existsSync(fglob).should.equal(false);
292285
shell.cat(fa).toString().should.equal(`hello world${os.EOL}`);
293286

0 commit comments

Comments
 (0)