From d38b05d93d6957daf468d5477eefe8719101b20e Mon Sep 17 00:00:00 2001 From: rixo Date: Wed, 11 Sep 2024 23:26:19 +0200 Subject: [PATCH] skip timing sentitive test in CI --- playground/basic/outro.spec.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/playground/basic/outro.spec.js b/playground/basic/outro.spec.js index 1d5e8fd..43df390 100644 --- a/playground/basic/outro.spec.js +++ b/playground/basic/outro.spec.js @@ -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([ { @@ -119,9 +119,11 @@ describe('outros', () => { text: '1ne', }, }, - expect: { - '[data-focus]': '1ne', - }, + steps: [ + { + expect: { '[data-focus]': '1ne' }, + }, + ], }, ]) )