hayd-caf
Version:
Haystacks D-CAF: Distinguished Cloud Automation Framework is a web/cloud/SaaS/mobile GUI automation plugin that leverages a suite of business rules and a factory pattern to auto-generate functions and strings for logging that are used to execute test acti
22 lines (18 loc) • 659 B
JavaScript
/**
* @file pluginData.js
* @module pluginData
* @description Contains the singleton data structure definition that allows the entire plugin,
* to collect and share all of its various data components with the Haystacks platform once the plugin is loaded.
* @requires {@link https://www.npmjs.com/package/@haystacks/constants|@haystacks/constants}
* @author Seth Hollingsead
* @date 2023/04/04
* @copyright Copyright © 2023-… by Seth Hollingsead. All rights reserved
*/
// Internal imports
// External imports
import hayConst from '@haystacks/constants';
const {wrd} = hayConst;
let pluginData = {};
export default {
[wrd.cdata]: pluginData
}