StyleSheet.coffee 263 B

1234567
  1. StyleSheet = require '../../../src/renderKid/styles/StyleSheet'
  2. describe "StyleSheet", ->
  3. describe "normalizeSelector()", ->
  4. it 'should remove unnecessary spaces', ->
  5. StyleSheet.normalizeSelector(' body+a s > a ')
  6. .should.equal 'body+a s>a'