UNPKG

prodap-chatbot-metricas

Version:

Biblioteca reponsável por capturar as métricas das Cloud Functions do Assistente Virtual

14 lines 408 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class PubSubMock { constructor() { this.topic = jest.fn((_name) => this); this.publishMessage = jest.fn((data) => Promise.resolve(data)); } mockClear() { this.topic.mockClear(); this.publishMessage.mockClear(); } } exports.default = PubSubMock; //# sourceMappingURL=PubSubMock.js.map