it('should add it to the statics set', () => {
    const css = '.h1 { color: red }'
    StyleContainer.addStatic(css)
    expect(StyleContainer.statics.has('.h1 { color: red }')).to.eql(true)
  })