@@ -7,7 +7,7 @@ import createCache from '@emotion/cache'
7
7
import { CacheProvider } from '@emotion/react'
8
8
import { renderToString } from 'react-dom/server'
9
9
10
- test ( 'it works' , ( ) => {
10
+ test . skip ( 'it works' , ( ) => {
11
11
let cache = createCache ( { key : 'ssr' } )
12
12
let { extractCritical } = createEmotionServer ( cache )
13
13
let ele = (
@@ -18,7 +18,7 @@ test('it works', () => {
18
18
expect ( extractCritical ( renderToString ( ele ) ) ) . toMatchSnapshot ( )
19
19
} )
20
20
21
- test ( 'Global component extracts the styles rather than inlines it' , ( ) => {
21
+ test . skip ( 'Global component extracts the styles rather than inlines it' , ( ) => {
22
22
let cache = createCache ( { key : 'ssr' } )
23
23
let { extractCritical } = createEmotionServer ( cache )
24
24
let ele = (
@@ -30,7 +30,7 @@ test('Global component extracts the styles rather than inlines it', () => {
30
30
expect ( extractCritical ( renderToString ( ele ) ) ) . toMatchSnapshot ( )
31
31
} )
32
32
33
- test ( 'extracted rules have correct keys when dealing with multiple caches' , ( ) => {
33
+ test . skip ( 'extracted rules have correct keys when dealing with multiple caches' , ( ) => {
34
34
let cache1 = createCache ( { key : 'ssr-first-key' } )
35
35
let { extractCritical : extractCritical1 } = createEmotionServer ( cache1 )
36
36
let ele1 = (
0 commit comments