- Add Activepieces fork with SmoothSchedule custom piece - Create integrations app with Activepieces service layer - Add embed token endpoint for iframe integration - Create Automations page with embedded workflow builder - Add sidebar visibility fix for embed mode - Add list inactive customers endpoint to Public API - Include SmoothSchedule triggers: event created/updated/cancelled - Include SmoothSchedule actions: create/update/cancel events, list resources/services/customers 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
663 B
TypeScript
24 lines
663 B
TypeScript
|
|
process.env.AP_EXECUTION_MODE = 'UNSANDBOXED'
|
|
process.env.AP_BASE_CODE_DIRECTORY = 'packages/engine/test/resources/codes'
|
|
process.env.AP_TEST_MODE = 'true'
|
|
process.env.AP_DEV_PIECES = 'http,data-mapper,approval,webhook'
|
|
|
|
/* eslint-disable */
|
|
export default {
|
|
displayName: 'engine',
|
|
preset: '../../jest.preset.js',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[tj]s$': [
|
|
'ts-jest',
|
|
{
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
],
|
|
},
|
|
transformIgnorePatterns: ["node_modules/(?!string\-replace\-async)"],
|
|
moduleFileExtensions: ['ts', 'js', 'html', 'node'],
|
|
coverageDirectory: '../../coverage/packages/engine',
|
|
};
|