@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
21 lines (19 loc) • 470 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CopilotMock = void 0;
var _sinon = require("sinon");
/*
Copyright (c) 2025 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
class CopilotMock {
constructor() {
this.executeEvent = void 0;
this.executePrompt = void 0;
this.executeEvent = (0, _sinon.stub)();
this.executePrompt = (0, _sinon.stub)();
}
}
exports.CopilotMock = CopilotMock;