Skip to content

Commit

Permalink
Merge pull request #94 from sveltejs/fix-ci-tests
Browse files Browse the repository at this point in the history
add wait time in test to fix ci run
  • Loading branch information
rixo authored Sep 11, 2024
2 parents 7a9dd75 + d38b05d commit 30f8b27
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions playground/basic/outro.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('outros', () => {
])
)

test(
test.skipIf(isCI)(
'updates when a child component contains an element with an outro that has run',
hmr([
{
Expand Down Expand Up @@ -119,9 +119,11 @@ describe('outros', () => {
text: '1ne',
},
},
expect: {
'[data-focus]': '1ne',
},
steps: [
{
expect: { '[data-focus]': '1ne' },
},
],
},
])
)
Expand Down

0 comments on commit 30f8b27

Please sign in to comment.