test: topic reordering tests

v1.18.x
Julian Lam 4 years ago
parent 7223074f1d
commit ad54b174a4

@ -100,6 +100,8 @@ paths:
$ref: 'write/topics/tid/tags.yaml'
/topics/{tid}/thumbs:
$ref: 'write/topics/tid/thumbs.yaml'
/topics/{tid}/thumbs/order:
$ref: 'write/topics/tid/thumbs/order.yaml'
/topics/{tid}/events:
$ref: 'write/topics/tid/events.yaml'
/posts/{pid}:

@ -176,6 +176,12 @@ describe('API', async () => {
fs.closeSync(fs.openSync(path.resolve(nconf.get('upload_path'), 'files/test.txt'), 'w'));
fs.closeSync(fs.openSync(path.resolve(nconf.get('upload_path'), 'files/test.png'), 'w'));
// Associate thumb with topic to test thumb reordering
await topics.thumbs.associate({
id: 2,
path: 'files/test.png',
});
const socketUser = require('../src/socket.io/user');
const socketAdmin = require('../src/socket.io/admin');
// export data for admin user

Loading…
Cancel
Save