mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
31 lines
760 B
TypeScript
31 lines
760 B
TypeScript
import { NodeTestHarness } from '@nodes-testing/node-test-harness';
|
|
|
|
import { credentials } from '../credentials';
|
|
|
|
describe('Azure Storage Node', () => {
|
|
const { baseUrl } = credentials.azureStorageOAuth2Api;
|
|
|
|
new NodeTestHarness().setupTests({
|
|
credentials,
|
|
workflowFiles: ['blob_delete.workflow.json'],
|
|
nock: {
|
|
baseUrl,
|
|
mocks: [
|
|
{
|
|
method: 'delete',
|
|
path: '/mycontainer/myblob',
|
|
statusCode: 202,
|
|
responseBody: '',
|
|
responseHeaders: {
|
|
'x-ms-request-id': '75b87ee3-a7f7-468d-b7d1-e7e7b3173dab',
|
|
'x-ms-version': '2025-01-05',
|
|
date: 'Thu, 23 Jan 2025 17:53:23 GMT',
|
|
'x-ms-delete-type-permanent': 'true',
|
|
'x-ms-client-request-id': 'x-ms-client-request-id',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
});
|
|
});
|