We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f742b7 commit cccc462Copy full SHA for cccc462
packages/wasm-sdk/test/ui-automation/playwright.config.js
@@ -52,7 +52,9 @@ module.exports = defineConfig({
52
viewport: { width: 1920, height: 1080 }
53
},
54
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 ? [] : [{
58
name: 'sequential-tests',
59
testMatch: ['state-transitions.spec.js'],
60
fullyParallel: false, // Tests in file run in order
@@ -64,7 +66,7 @@ module.exports = defineConfig({
64
66
// Use a larger viewport for better testing
65
67
68
- },
69
+ }]),
70
],
71
72
/* Run your local dev server before starting the tests */
0 commit comments