diff --git a/internal/test/playwright_test.go b/internal/test/playwright_test.go index 66c84df..2ac5d94 100644 --- a/internal/test/playwright_test.go +++ b/internal/test/playwright_test.go @@ -214,6 +214,11 @@ func TestPlaywrightBrowser(t *testing.T) { return } + if os.Getenv("SKIP_INTEGRATION") != "" { + t.Skip("SKIP_INTEGRATION was set") + return + } + startPlaywright(t) pw := setupPlaywright(t) @@ -289,6 +294,11 @@ func TestPlaywrightWithBasePrefix(t *testing.T) { return } + if os.Getenv("SKIP_INTEGRATION") != "" { + t.Skip("SKIP_INTEGRATION was set") + return + } + t.Skip("NOTE(Xe)\\ these tests require HTTPS support in #364") startPlaywright(t)