UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

14 lines (13 loc) 307 B
/* Copyright (c) 2025 Betim Beja and Shko Online LLC Licensed under the MIT license. */ import { stub } from 'sinon'; export class CopilotMock { constructor() { this.executeEvent = void 0; this.executePrompt = void 0; this.executeEvent = stub(); this.executePrompt = stub(); } }