feat: Implement get trigger substeps API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-01 15:58:42 +01:00
parent 73bd90c555
commit cea9ed056b
6 changed files with 96 additions and 1 deletions

View File

@@ -28,7 +28,7 @@ describe('GET /api/v1/apps/:appKey/auth', () => {
it('should return not found response for invalid app key', async () => {
await request(app)
.get('/api/v1/apps/invalid-app-key')
.get('/api/v1/apps/invalid-app-key/auth')
.set('Authorization', token)
.expect(404);
});