UNPKG

hexios

Version:

A haystacks based API testing automation plugin used for building API testing automation frameworks, wrapper for the axios library.

22 lines (18 loc) 659 B
/** * @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/20 * @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 }