diff --git a/console/console_test.go b/console/console_test.go index a2fd0af32a..d210a993c2 100644 --- a/console/console_test.go +++ b/console/console_test.go @@ -172,6 +172,9 @@ func TestWelcome(t *testing.T) { if want := fmt.Sprintf("datadir: %s", tester.workspace); !strings.Contains(output, want) { t.Fatalf("console output missing datadir: have\n%s\nwant also %s", output, want) } + if want := "modules: "; !strings.Contains(output, want) { + t.Fatalf("console output missing modules: have\n%s\nwant also %s", output, want) + } } // Tests that JavaScript statement evaluation works as intended.