mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
wip: delete response
This commit is contained in:
parent
51533bdf04
commit
9e42159db7
|
@ -391,3 +391,18 @@ describe('DELETE /evaluation/test-definitions/:id', () => {
|
||||||
expect(resp.body.message).toBe('Annotation tag not found');
|
expect(resp.body.message).toBe('Annotation tag not found');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('DELETE /evaluation/test-definitions/:id', () => {
|
||||||
|
test('should delete test definition', async () => {
|
||||||
|
const newTest = Container.get(TestDefinitionRepository).create({
|
||||||
|
name: 'test',
|
||||||
|
workflow: { id: workflowUnderTest.id },
|
||||||
|
});
|
||||||
|
await Container.get(TestDefinitionRepository).save(newTest);
|
||||||
|
|
||||||
|
const resp = await authOwnerAgent.delete(`/evaluation/test-definitions/${newTest.id}`);
|
||||||
|
|
||||||
|
expect(resp.statusCode).toBe(200);
|
||||||
|
expect(resp.body.data.success).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in a new issue