Compose-ready workspace: packages/zappier (rate card, portal, Stripe), packages/verae-zapier-middleware (timestamp + NATS), packages/verae-zapier (CLI app), vendor/zapier-platform, and research/zapier vendor corpus. Gate 0 structure checks pass. Product code and research are not yet wired.
18 lines
583 B
TypeScript
18 lines
583 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import zapier from 'zapier-platform-core';
|
|
|
|
import App from '../../index';
|
|
|
|
const appTester = zapier.createAppTester(App);
|
|
// read the `.env` file into the environment, if available
|
|
zapier.tools.env.inject();
|
|
|
|
describe('<%= ACTION_PLURAL %>.<%= KEY %>', () => {
|
|
it('should run', async () => {
|
|
const bundle = { inputData: {} };
|
|
|
|
const results = await appTester(App.<%= ACTION_PLURAL %>['<%= KEY %>'].<%= MAYBE_RESOURCE %>operation.perform, bundle);
|
|
expect(results).toBeDefined();
|
|
// TODO: add more assertions
|
|
});
|
|
});
|