wix-style-react
Version:
wix-style-react
28 lines (23 loc) • 743 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
// We can add here constants for the Storybook category names
var RTL_QUERY_PARAM_NAME = exports.RTL_QUERY_PARAM_NAME = 'rtl';
// Root Level
var TESTS_PREFIX = exports.TESTS_PREFIX = 'Tests';
var getTestStoryKind = exports.getTestStoryKind = function getTestStoryKind(_ref) {
var category = _ref.category,
storyName = _ref.storyName;
return TESTS_PREFIX + '/' + category + '/' + storyName;
};
var Category = exports.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'
};