test #2402
|
@ -52,18 +52,16 @@ describe('Operator', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not sent notification when is already notified by another worker', async() => {
|
it('should not sent notification when is already notified by another worker', async() => {
|
||||||
try {
|
const {id} = await models.NotificationQueue.create({
|
||||||
await models.NotificationQueue.create({
|
|
||||||
authorFk: 2,
|
authorFk: 2,
|
||||||
notificationFk: notificationName,
|
notificationFk: notificationName,
|
||||||
params: JSON.stringify({'labelerId': labeler, 'sectorId': sectorId, 'workerId': 2}),
|
params: JSON.stringify({'labelerId': labeler, 'sectorId': sectorId, 'workerId': 2}),
|
||||||
created: '2001-01-01 12:30:00',
|
created: '2001-01-01 11:30:00',
|
||||||
status: sentStatus
|
status: sentStatus
|
||||||
});
|
});
|
||||||
await models.Operator.updateAll({id: 1}, {labelerFk: labeler, sectorFk: sectorId});
|
const notificationQueue = await updateOperatorAndFindNotification();
|
||||||
} catch (e) {
|
|
||||||
expect(e.message).toEqual('Previous notification sended with the same parameters');
|
expect(notificationQueue.id).toEqual(id);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should send a notification when the previous one has distinct params', async() => {
|
it('should send a notification when the previous one has distinct params', async() => {
|
||||||
|
|
Loading…
Reference in New Issue