Skip to content

Commit 307f757

Browse files
committed
test: update
1 parent ed9b36a commit 307f757

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages-private/vapor-e2e-test/__tests__/vdomInterop.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe('vdom / vapor interop', () => {
9696
expect(await html(testContainer)).toBe('<span>loading...</span>')
9797

9898
await timeout(duration)
99-
expect(await html(testContainer)).toBe('<div> foo </div>')
99+
expect(await html(testContainer)).toBe('<div>foo</div>')
100100
},
101101
E2E_TIMEOUT,
102102
)

packages-private/vapor-e2e-test/interop/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import VdomFoo from './components/VdomFoo.vue'
66
const msg = ref('hello')
77
const passSlot = ref(true)
88
9-
const duration = typeof process !== undefined && process.env.CI ? 200 : 50
9+
const duration = typeof process !== 'undefined' && process.env.CI ? 200 : 50
1010
1111
const AsyncVDomFoo = defineVaporAsyncComponent({
1212
loader: () => {

0 commit comments

Comments
 (0)