it('should treat strings as static css', () => {
    const css = 'h1 { color: blue }'
    StyleSheet.addCSS(css)
    expect(StyleContainer.statics.has('h1 { color: blue }')).to.eql(true)
  })