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 726983b commit ad9344cCopy full SHA for ad9344c
test/cases/getChapterNames.ts
@@ -25,7 +25,7 @@ describe("getChapterNames", function () {
25
return client.get(`${endpoint}?description=${query}&channelID=${chapterChannelID}`)
26
.then(res => {
27
assert.strictEqual(res.status, 200);
28
- assert.strictEqual(res.data.length, 1);
+ assert.strictEqual(res.data.length, chapterNames.length);
29
assert.ok(partialDeepEquals(res.data, expectedData));
30
});
31
};
0 commit comments