mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-27 00:56:13 +01:00
test: fix occasional test failure
This commit is contained in:
@@ -262,10 +262,8 @@ describe('Topic thumbs', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should handle an array of relative paths', async () => {
|
it('should handle an array of relative paths', async () => {
|
||||||
await Promise.all([
|
await topics.thumbs.associate({ id: 1, path: thumbPaths[0] });
|
||||||
topics.thumbs.associate({ id: 1, path: thumbPaths[0] }),
|
await topics.thumbs.associate({ id: 1, path: thumbPaths[1] });
|
||||||
topics.thumbs.associate({ id: 1, path: thumbPaths[1] }),
|
|
||||||
]);
|
|
||||||
|
|
||||||
await topics.thumbs.delete(1, [relativeThumbPaths[0], relativeThumbPaths[1]]);
|
await topics.thumbs.delete(1, [relativeThumbPaths[0], relativeThumbPaths[1]]);
|
||||||
});
|
});
|
||||||
@@ -276,10 +274,8 @@ describe('Topic thumbs', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should decrement numThumbs if dissociated one by one', async () => {
|
it('should decrement numThumbs if dissociated one by one', async () => {
|
||||||
await Promise.all([
|
await topics.thumbs.associate({ id: 1, path: thumbPaths[0] });
|
||||||
topics.thumbs.associate({ id: 1, path: thumbPaths[0] }),
|
await topics.thumbs.associate({ id: 1, path: thumbPaths[1] });
|
||||||
topics.thumbs.associate({ id: 1, path: thumbPaths[1] }),
|
|
||||||
]);
|
|
||||||
|
|
||||||
await topics.thumbs.delete(1, [relativeThumbPaths[0]]);
|
await topics.thumbs.delete(1, [relativeThumbPaths[0]]);
|
||||||
let numThumbs = parseInt(await db.getObjectField('topic:1', 'numThumbs'), 10);
|
let numThumbs = parseInt(await db.getObjectField('topic:1', 'numThumbs'), 10);
|
||||||
|
|||||||
Reference in New Issue
Block a user