Skip to content

Commit cccc462

Browse files
committed
ci: disable state transition testing in CI for now
Test are very slow due to rs-sdk bug. They are also complicated because they require a funded identity to work
1 parent 2f742b7 commit cccc462

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/wasm-sdk/test/ui-automation/playwright.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ module.exports = defineConfig({
5252
viewport: { width: 1920, height: 1080 }
5353
},
5454
},
55-
{
55+
// Skip state transitions tests in CI environments
56+
// These are very slow-running due to https://github.com/dashpay/platform/issues/2736
57+
...(process.env.CI ? [] : [{
5658
name: 'sequential-tests',
5759
testMatch: ['state-transitions.spec.js'],
5860
fullyParallel: false, // Tests in file run in order
@@ -64,7 +66,7 @@ module.exports = defineConfig({
6466
// Use a larger viewport for better testing
6567
viewport: { width: 1920, height: 1080 }
6668
},
67-
},
69+
}]),
6870
],
6971

7072
/* Run your local dev server before starting the tests */

0 commit comments

Comments
 (0)