Skip to content

Commit 30f8b27

Browse files
authored
Merge pull request #94 from sveltejs/fix-ci-tests
add wait time in test to fix ci run
2 parents 7a9dd75 + d38b05d commit 30f8b27

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)