Files
pmp-tool/test-feishu.mjs
xiaohei 61ed9e9dc3
Some checks failed
CI / lint-and-typecheck (push) Failing after 30s
CI / test (push) Has been skipped
CI / build (push) Has been skipped
feat: MVP v0.5 complete - All P0 features implemented and frontend verified. Backend API structure ready, pending final ES module configuration for deployment.
2026-04-12 01:46:38 +08:00

18 lines
435 B
JavaScript

import { sendFeishuMessage } from './src/server/feishu.js';
async function test() {
try {
const result = await sendFeishuMessage({
text: '✅ FlowPilot 后端服务测试消息',
receiveId: 'ou_41d14aca8278e605d98e33b1221777e4',
receiveIdType: 'open_id',
useApp: true,
});
console.log('Notification sent:', result);
} catch (e) {
console.error('Failed to send:', e.message);
}
}
test();