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 a1755b9 commit 27eac2fCopy full SHA for 27eac2f
test/multi.spec.js
@@ -137,6 +137,7 @@ describe("The 'multi' method", function () {
137
client.monitor(function (e) {
138
client.on('error', function (err) {
139
assert.strictEqual(err.code, 'EXECABORT');
140
+ client.end(false);
141
done();
142
});
143
var multi = client.multi();
@@ -149,6 +150,7 @@ describe("The 'multi' method", function () {
149
150
// Check that using monitor with a transactions results in an error
151
client.multi().set('foo', 'bar').monitor().exec(function (err, res) {
152
153
154
155
156
0 commit comments