You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bootstrap.js 315 B

3 jaren geleden
1234567891011121314
  1. import {create} from 'jss'
  2. import bootstrap from '../fixtures/modified-bootstrap.json'
  3. import nested from '../../src/index'
  4. suite('Nested bootstrap JSS to CSS', () => {
  5. benchmark('.toString()', () => {
  6. const jss = create().use(nested())
  7. jss
  8. .createStyleSheet(bootstrap)
  9. .toString()
  10. })
  11. })