This commit is contained in:
kakkokari-gtyih 2025-08-22 18:03:38 +09:00
parent 52ba853332
commit 698f72e82c
1 changed files with 2 additions and 1 deletions

View File

@ -366,7 +366,8 @@ describe('クリップ', () => {
parameters: { limit: clips.length },
});
assert.deepStrictEqual(res, clips);
// 返ってくるときは作成が直近のものからとなるので、作成時のデータの順番を逆順にしたものと比較
assert.deepStrictEqual(res, clips.toReversed());
});
test('の一覧が取得できる(空)', async () => {