From 5e9f7c3627e9ee56cedac6e9801225c271d6cdbb Mon Sep 17 00:00:00 2001 From: thomsj Date: Thu, 10 Oct 2019 05:48:41 +0100 Subject: [PATCH] Add `--shell=bash` to `env` smoke test (#148) Add `--shell=bash` so test passes when run with fish. --- test/SmokeTest.re | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SmokeTest.re b/test/SmokeTest.re index 47ec23c..3d8b287 100644 --- a/test/SmokeTest.re +++ b/test/SmokeTest.re @@ -11,7 +11,7 @@ describe("Smoke test", ({test, _}) => { }); test("env", ({expect}) => { - let env = run([|"env"|]) |> redactSfwRoot; + let env = run([|"env", "--shell=bash"|]) |> redactSfwRoot; expect.string(env).toMatchSnapshot(); }); });