Files
goTorrent/goTorrentWebUI/node_modules/material-ui/es/test-utils/getClasses.js

21 lines
647 B
JavaScript

import _extends from 'babel-runtime/helpers/extends';
import * as ns from 'react-jss/lib/ns';
import { SheetsRegistry } from 'jss';
import createShallow from './createShallow';
import { sheetsManager } from '../styles/withStyles';
const shallow = createShallow();
// Helper function to extract the classes from a styleSheet.
export default function getClasses(element, options = {}) {
const sheetsRegistry = new SheetsRegistry();
sheetsManager.clear();
shallow(element, _extends({}, options, {
context: _extends({
[ns.sheetsRegistry]: sheetsRegistry
}, options.context)
}));
return sheetsRegistry.registry[0].classes;
}