summaryrefslogtreecommitdiffstats
path: root/pkg/integration/clients
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/integration/clients')
-rw-r--r--pkg/integration/clients/go_test.go6
-rw-r--r--pkg/integration/clients/tui.go2
2 files changed, 7 insertions, 1 deletions
diff --git a/pkg/integration/clients/go_test.go b/pkg/integration/clients/go_test.go
index 318c1af9d..851059e15 100644
--- a/pkg/integration/clients/go_test.go
+++ b/pkg/integration/clients/go_test.go
@@ -40,6 +40,12 @@ func TestIntegration(t *testing.T) {
return
}
+ // not running demoes right now. Arguably we should, but we'd need to
+ // strip away any artificial lag they use.
+ if test.IsDemo() {
+ return
+ }
+
t.Run(test.Name(), func(t *testing.T) {
t.Parallel()
err := f()
diff --git a/pkg/integration/clients/tui.go b/pkg/integration/clients/tui.go
index 47f1a2dc2..904712037 100644
--- a/pkg/integration/clients/tui.go
+++ b/pkg/integration/clients/tui.go
@@ -19,7 +19,7 @@ import (
// This program lets you run integration tests from a TUI. See pkg/integration/README.md for more info.
-var SLOW_KEY_PRESS_DELAY = 300
+var SLOW_KEY_PRESS_DELAY = 600
func RunTUI() {
rootDir := utils.GetLazyRootDirectory()