mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-12-02 20:27:49 +08:00
fix(plugin-workflow): fix test case (#1172)
This commit is contained in:
parent
400320d175
commit
271573c52a
@ -328,6 +328,16 @@ describe('workflow > actions > workflows', () => {
|
|||||||
expect(w2.enabled).toBe(false);
|
expect(w2.enabled).toBe(false);
|
||||||
expect(w2.allExecuted).toBe(0);
|
expect(w2.allExecuted).toBe(0);
|
||||||
|
|
||||||
|
// stop w1
|
||||||
|
await WorkflowModel.update({
|
||||||
|
enabled: false
|
||||||
|
}, {
|
||||||
|
where: {
|
||||||
|
id: w1.id
|
||||||
|
},
|
||||||
|
individualHooks: true
|
||||||
|
});
|
||||||
|
|
||||||
await WorkflowModel.update({
|
await WorkflowModel.update({
|
||||||
enabled: true
|
enabled: true
|
||||||
}, {
|
}, {
|
||||||
@ -345,10 +355,10 @@ describe('workflow > actions > workflows', () => {
|
|||||||
order: [['id', 'ASC']]
|
order: [['id', 'ASC']]
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(w1next.enabled).toBe(true);
|
expect(w1next.enabled).toBe(false);
|
||||||
expect(w1next.current).toBe(true);
|
expect(w1next.current).toBe(true);
|
||||||
expect(w1next.executed).toBe(2);
|
expect(w1next.executed).toBe(1);
|
||||||
expect(w1next.allExecuted).toBe(2);
|
expect(w1next.allExecuted).toBe(1);
|
||||||
expect(w2next.enabled).toBe(true);
|
expect(w2next.enabled).toBe(true);
|
||||||
expect(w2next.executed).toBe(1);
|
expect(w2next.executed).toBe(1);
|
||||||
expect(w2next.allExecuted).toBe(1);
|
expect(w2next.allExecuted).toBe(1);
|
||||||
@ -356,7 +366,6 @@ describe('workflow > actions > workflows', () => {
|
|||||||
const [e1] = await w1next.getExecutions();
|
const [e1] = await w1next.getExecutions();
|
||||||
const [e2] = await w2next.getExecutions();
|
const [e2] = await w2next.getExecutions();
|
||||||
expect(e1.key).not.toBe(e2.key);
|
expect(e1.key).not.toBe(e2.key);
|
||||||
expect(e1.workflowId).toBe(w1.id);
|
|
||||||
expect(e2.workflowId).toBe(w2.id);
|
expect(e2.workflowId).toBe(w2.id);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user