Merge remote-tracking branch 'origin/develop' into qa/bat

This commit is contained in:
Hafiz
2025-08-12 09:46:07 -05:00
128 changed files with 612 additions and 376 deletions
+1 -1
View File
@@ -203,4 +203,4 @@ describe('Blocker middleware', () => {
expect(calledWith[0] instanceof Forbidden).to.equal(true);
});
});
});
});
+1 -1
View File
@@ -972,7 +972,7 @@ describe('User Model', () => {
expect(valid).to.equal(false);
});
it('throws an error if email is not blocked', () => {
it('does not throw an error if email is not blocked', () => {
sandbox.stub(Blocker, 'watchBlockers').returns({
on: (event, callback) => {
callback({ operation: 'add', blocker: { type: 'email', area: 'full', value: '@example.com' } });