UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

14 lines (13 loc) 302 B
/* Copyright (c) 2022 Betim Beja and Shko Online LLC Licensed under the MIT license. */ import { stub } from 'sinon'; export class ResourcesMock { constructor() { this.getResource = void 0; this.getString = void 0; this.getResource = stub(); this.getString = stub(); } }