This commit is contained in:
Jerry Kurian
2019-08-16 10:01:55 -04:00
parent 4e80e48fa4
commit 50f6886b4b
5 changed files with 60 additions and 56 deletions

View File

@@ -26,9 +26,7 @@ test.cb("accumulator() rolling", t => {
.on("error", (e: any) => {
t.end(e);
})
.on("end", () => {
t.end();
});
.on("end", t.end);
[...firstFlush, ...secondFlush, ...thirdFlush].forEach(item => {
source.push(item);
});
@@ -61,9 +59,7 @@ test.cb("accumulator() rolling with key", t => {
.on("error", (e: any) => {
t.end(e);
})
.on("end", () => {
t.end();
});
.on("end", t.end);
[...firstFlush, ...secondFlush].forEach(item => {
source.push(item);
});
@@ -105,9 +101,7 @@ test.cb(
index++;
t.pass();
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
});
@@ -162,9 +156,7 @@ test.cb(
);
t.pass();
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
});
@@ -209,9 +201,7 @@ test.cb("accumulator() sliding", t => {
.on("error", (e: any) => {
t.end(e);
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
});
@@ -266,9 +256,7 @@ test.cb("accumulator() sliding with key", t => {
.on("error", (e: any) => {
t.end(e);
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
});
@@ -309,9 +297,7 @@ test.cb(
index++;
t.pass();
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
});
@@ -372,9 +358,7 @@ test.cb(
);
t.pass();
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
});
@@ -416,9 +400,7 @@ test.cb("accumulatorBy() rolling", t => {
.on("error", (e: any) => {
t.end(e);
})
.on("end", () => {
t.end();
});
.on("end", t.end);
[...firstFlush, ...secondFlush].forEach(item => {
source.push(item);
});
@@ -457,9 +439,7 @@ test.cb(
expect(err.message).to.equal("Failed mapping");
t.pass();
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
@@ -524,9 +504,7 @@ test.cb("accumulatorBy() sliding", t => {
.on("error", (e: any) => {
t.end(e);
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);
});
@@ -565,9 +543,7 @@ test.cb(
expect(err.message).to.equal("Failed mapping");
t.pass();
})
.on("end", () => {
t.end();
});
.on("end", t.end);
input.forEach(item => {
source.push(item);

View File

@@ -11,8 +11,7 @@ test.cb("batch() batches chunks together", t => {
source
.pipe(batch(3))
.on("data", (element: string[]) => {
expect(element).to.deep.equal(expectedElements[i]);
t.pass();
t.deepEqual(element, expectedElements[i]);
i++;
})
.on("error", t.end)
@@ -39,8 +38,7 @@ test.cb("batch() yields a batch after the timeout", t => {
source
.pipe(batch(3))
.on("data", (element: string[]) => {
expect(element).to.deep.equal(expectedElements[i]);
t.pass();
t.deepEqual(element, expectedElements[i]);
i++;
})
.on("error", t.fail)