AAE-30882 Remove superagent for fetch (#11856)

* [AAE-30882] - Remove superagent for fetch

* [AAE-30882] - Fixing comments

* [AAE-30882] - fixde failing unit tests

* [AAE-30882] - fixde failing unit tests

* [AAE-30882] - fixd sonarcloud comment
This commit is contained in:
Vito Albano
2026-05-20 14:19:27 +05:30
committed by Anamika Dey
parent 94b9a81570
commit a58fd2e7cc
54 changed files with 2127 additions and 922 deletions
@@ -15,42 +15,14 @@
* limitations under the License.
*/
import nock from 'nock';
import { BaseMock } from '../base.mock';
export class TaskFormMock extends BaseMock {
get200getTaskFormVariables(): void {
nock(this.host, { encodedQueryParams: true })
this.mock()
.get('/activiti-app/api/enterprise/task-forms/5028/variables')
.reply(
200,
[{ id: 'initiator', type: 'string', value: '1001' }],
[
'Server',
'Apache-Coyote/1.1',
'set-cookie',
'ACTIVITI_REMEMBER_ME=NjdOdGwvcUtFTkVEczQyMGh4WFp5QT09OmpUL1UwdFVBTC94QTJMTFFUVFgvdFE9PQ',
'X-Content-Type-Options',
'nosniff',
'X-XSS-Protection',
'1; mode=block',
'Cache-Control',
'no-cache, no-store, max-age=0, must-revalidate',
'Pragma',
'no-cache',
'Expires',
'0',
'X-Frame-Options',
'SAMEORIGIN',
'Content-Type',
'application/json',
'Transfer-Encoding',
'chunked',
'Date',
'Tue, 01 Nov 2016 19:43:36 GMT',
'Connection',
'close'
]
);
.reply(200, [{ id: 'initiator', type: 'string', value: '1001' }], {
'set-cookie': 'ACTIVITI_REMEMBER_ME=NjdOdGwvcUtFTkVEczQyMGh4WFp5QT09OmpUL1UwdFVBTC94QTJMTFFUVFgvdFE9PQ'
});
}
}