Files
eveAI/integrations/Zapier/eveai_integration/test/creates/add_document.test.js

21 lines
566 B
JavaScript

const zapier = require('zapier-platform-core');
// Use this to make test calls into your app:
const App = require('../../index');
const appTester = zapier.createAppTester(App);
// read the `.env` file into the environment, if available
zapier.tools.env.inject();
describe('creates.add_document', () => {
it('should run', async () => {
const bundle = { inputData: {} };
const results = await appTester(
App.creates['add_document'].operation.perform,
bundle
);
expect(results).toBeDefined();
// TODO: add more assertions
});
});