Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Microsoft/Storage/test/container/delete.test.ts
कारतोफ्फेलस्क्रिप्ट™ 979f9e6327 refactor: Overhaul nodes-testing setup - Part 3 (no-changelog) (#14967)
2025-04-29 17:42:21 +02:00

30 lines
764 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: ['container_delete.workflow.json'],
nock: {
baseUrl,
mocks: [
{
method: 'delete',
path: '/mycontainer?restype=container',
statusCode: 202,
responseBody: '',
responseHeaders: {
'content-length': '0',
server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0',
'x-ms-request-id': 'ca3a8907-601e-0050-1929-723410000000',
'x-ms-version': '2020-10-02',
date: 'Wed, 29 Jan 2025 08:38:21 GMT',
},
},
],
},
});
});