Skip to content

Commit d885941

Browse files
committed
Attempt to fix tests on Windows
1 parent 101a0db commit d885941

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/resolver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ test('async: #121 - treating an existing file as a dir when no basedir', functio
309309
t.test('with a trailing slash', function (st) {
310310
st.plan(4);
311311

312-
resolve('./' + testFile + '/', function (err, res, pkg) {
312+
resolve('./' + testFile + path.sep, function (err, res, pkg) {
313313
st.ok(err, 'there is an error');
314314
st.notOk(res, 'no result');
315315

test/resolver_sync.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ test('sync: #121 - treating an existing file as a dir when no basedir', function
231231
});
232232

233233
t.test('with a trailing slash', function (st) {
234-
function run() { return resolve.sync('./' + testFile + '/'); }
234+
function run() { return resolve.sync('./' + testFile + path.sep); }
235235

236236
st.throws(run, 'throws an error');
237237

0 commit comments

Comments
 (0)