From 7a6d231c721948b3cc3478677294834410404541 Mon Sep 17 00:00:00 2001 From: Paul Doyle Date: Tue, 2 Apr 2019 16:26:04 -0700 Subject: [PATCH] Add flag to the test runner. Technically, none of our tests yet rely on the asserts (which is surprising), but we still want hem on for tests --- bin/spec.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/spec.lua b/bin/spec.lua index caa18198..85134e48 100644 --- a/bin/spec.lua +++ b/bin/spec.lua @@ -2,6 +2,8 @@ Loads our library and all of its dependencies, then runs tests using TestEZ. ]] +_G.ROACT_DEBUG = true + -- If you add any dependencies, add them to this table so they'll be loaded! local LOAD_MODULES = { {"lib", "Roact"},