Cleanup .pyc and .DS_Store, add new modules, remove legacy services

This commit is contained in:
Josako
2025-05-17 18:46:17 +02:00
parent 5c982fcc2c
commit d2a9092f46
93 changed files with 1620 additions and 80 deletions

View File

@@ -0,0 +1,20 @@
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
});
});