it('toCSS should just call addCSS', () => {
    const css = 'h1 { color: blue }'
    StyleSheet.toCSS(css)
    expect(StyleContainer.statics.has('h1 { color: blue }')).to.eql(true)
  })