revert: post queue changes to fix tests

This commit is contained in:
Barış Soner Uşaklı
2025-09-09 11:20:03 -04:00
parent a5ea4b4056
commit 10350ea6f6
2 changed files with 2 additions and 16 deletions

View File

@@ -24,8 +24,8 @@
"newbieChatMessageDelay": 120000, "newbieChatMessageDelay": 120000,
"notificationSendDelay": 60, "notificationSendDelay": 60,
"newbieReputationThreshold": 3, "newbieReputationThreshold": 3,
"postQueue": 1, "postQueue": 0,
"postQueueReputationThreshold": 1, "postQueueReputationThreshold": 0,
"groupsExemptFromPostQueue": ["administrators", "Global Moderators"], "groupsExemptFromPostQueue": ["administrators", "Global Moderators"],
"groupsExemptFromNewUserRestrictions": ["administrators", "Global Moderators"], "groupsExemptFromNewUserRestrictions": ["administrators", "Global Moderators"],
"groupsExemptFromMaintenanceMode": ["administrators", "Global Moderators"], "groupsExemptFromMaintenanceMode": ["administrators", "Global Moderators"],

View File

@@ -54,14 +54,6 @@ describe('Topic\'s', () => {
}); });
describe('.post', () => { describe('.post', () => {
before(() => {
meta.config.postQueue = 0;
});
after(() => {
meta.config.postQueue = 1;
});
it('should fail to create topic with invalid data', async () => { it('should fail to create topic with invalid data', async () => {
try { try {
await apiTopics.create({ uid: 0 }, null); await apiTopics.create({ uid: 0 }, null);
@@ -2345,12 +2337,6 @@ describe('Topic\'s', () => {
content: 'The content of scheduled test topic', content: 'The content of scheduled test topic',
timestamp: new Date(Date.now() + 86400000).getTime(), timestamp: new Date(Date.now() + 86400000).getTime(),
}; };
meta.config.postQueue = 0;
});
after(() => {
meta.config.postQueue = 1;
}); });
it('should create a scheduled topic as pinned, deleted, included in "topics:scheduled" zset and with a timestamp in future', async () => { it('should create a scheduled topic as pinned, deleted, included in "topics:scheduled" zset and with a timestamp in future', async () => {