You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
Windows fixes
Skip redis process spawn on windows for now
This commit is contained in:
@@ -32,26 +32,21 @@ describe("TLS connection tests", function () {
|
||||
skip = true;
|
||||
console.warn('\nTravis does not support stunnel right now. Skipping tests.\nCheck: https://github.com/travis-ci/apt-package-whitelist/issues/403\n');
|
||||
}
|
||||
if (skip) {
|
||||
done();
|
||||
return;
|
||||
}
|
||||
if (skip) return done();
|
||||
helper.stopStunnel(function () {
|
||||
helper.startStunnel(done);
|
||||
});
|
||||
});
|
||||
|
||||
after(function (done) {
|
||||
if (skip) {
|
||||
done();
|
||||
return;
|
||||
}
|
||||
if (skip) return done();
|
||||
helper.stopStunnel(done);
|
||||
});
|
||||
|
||||
var client;
|
||||
|
||||
afterEach(function () {
|
||||
if (skip) return;
|
||||
client.end(true);
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user