@apify/n8n-nodes-apify
Version:
n8n nodes for Apify
22 lines • 815 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Apify_node_1 = require("../Apify/Apify.node");
describe('Apify Node', () => {
let apifyNode;
beforeEach(() => {
apifyNode = new Apify_node_1.Apify();
});
describe('description', () => {
it('should have a name property', () => {
expect(apifyNode.description.name).toBeDefined();
expect(apifyNode.description.name).toEqual('apify');
});
it('should have properties defined', () => {
expect(apifyNode.description.properties).toBeDefined();
});
it('should have credential properties defined', () => {
expect(apifyNode.description.credentials).toBeDefined();
});
});
});
//# sourceMappingURL=Apify.node.test.js.map