Skip to content

Commit d38b05d

Browse files
committed
skip timing sentitive test in CI
1 parent 7a9dd75 commit d38b05d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

playground/basic/outro.spec.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ describe('outros', () => {
7474
])
7575
)
7676

77-
test(
77+
test.skipIf(isCI)(
7878
'updates when a child component contains an element with an outro that has run',
7979
hmr([
8080
{
@@ -119,9 +119,11 @@ describe('outros', () => {
119119
text: '1ne',
120120
},
121121
},
122-
expect: {
123-
'[data-focus]': '1ne',
124-
},
122+
steps: [
123+
{
124+
expect: { '[data-focus]': '1ne' },
125+
},
126+
],
125127
},
126128
])
127129
)

0 commit comments

Comments
 (0)