@@ -96,7 +96,7 @@ describe('vdom / vapor interop', () => {
expect(await html(testContainer)).toBe('<span>loading...</span>')
await timeout(duration)
- expect(await html(testContainer)).toBe('<div> foo </div>')
+ expect(await html(testContainer)).toBe('<div>foo</div>')
},
E2E_TIMEOUT,
)
@@ -6,7 +6,7 @@ import VdomFoo from './components/VdomFoo.vue'
const msg = ref('hello')
const passSlot = ref(true)
-const duration = typeof process !== undefined && process.env.CI ? 200 : 50
+const duration = typeof process !== 'undefined' && process.env.CI ? 200 : 50
const AsyncVDomFoo = defineVaporAsyncComponent({
loader: () => {