Merge pull request #2813 from code-yeongyu/fix/tmux-test-flake-20260325

test(tmux): remove flaky live env wrapper assertion
This commit is contained in:
YeonGyu-Kim
2026-03-25 02:08:05 +09:00
committed by GitHub
+3 -3
View File
@@ -43,12 +43,12 @@ describe("isInsideTmux", () => {
expect(result).toBe(false)
})
test("returns the same result as the process environment helper", () => {
test("is exported as a function", () => {
// given, #when
const result = isInsideTmux()
const result = typeof isInsideTmux
// then
expect(result).toBe(isInsideTmuxEnvironment(process.env))
expect(result).toBe("function")
})
})