We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 344b3f1 commit 803280cCopy full SHA for 803280c
2 files changed
docker-compose.yml
@@ -4,7 +4,7 @@ services:
4
image: ghcr.io/pathofbuildingcommunity/pathofbuilding-tests:latest
5
environment:
6
HOME: /tmp
7
- POB_TEST_MODE: "1"
+ POB_TEST_MODE: 1
8
container_name: pathofbuilding-tests
9
command: busted --lua=luajit
10
security_opt:
src/Launch.lua
@@ -6,7 +6,7 @@
--
-- Check if running in test mode via environment variable
-local isTestMode = true--os.getenv("POB_TEST_MODE") == "1"
+local isTestMode = os.getenv("POB_TEST_MODE") == "1"
11
local startTime = GetTime()
12
APP_NAME = "Path of Building (PoE2)"
0 commit comments