wix-style-react
Version:
wix-style-react
23 lines (19 loc) • 591 B
JavaScript
// We can add here constants for the Storybook category names
export var RTL_QUERY_PARAM_NAME = 'rtl';
// Root Level
export var TESTS_PREFIX = 'Tests';
export var getTestStoryKind = function getTestStoryKind(_ref) {
var category = _ref.category,
storyName = _ref.storyName;
return TESTS_PREFIX + '/' + category + '/' + storyName;
};
export var Category = {
FOUNDATION: '1. Foundation',
BUTTONS: '5. Buttons',
INPUTS: '3. Inputs',
PICKERS_AND_SELECTORS: '11. Pickers and Selectors',
OTHER: '12. Other',
COMPONENTS: 'Components',
STYLING: 'Styling',
WIP: 'WIP'
};