aboutsummaryrefslogtreecommitdiff
path: root/spec/quick_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/quick_spec.lua')
-rw-r--r--spec/quick_spec.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/quick_spec.lua b/spec/quick_spec.lua
index 8b8206cf..c2d8bb59 100644
--- a/spec/quick_spec.lua
+++ b/spec/quick_spec.lua
@@ -12,7 +12,9 @@ describe("quick tests: #quick", function()
12 if f:match("%.q$") then 12 if f:match("%.q$") then
13 local tests = quick.compile(spec_quick .. "/" .. f, getfenv and getfenv() or _ENV) 13 local tests = quick.compile(spec_quick .. "/" .. f, getfenv and getfenv() or _ENV)
14 for _, t in ipairs(tests) do 14 for _, t in ipairs(tests) do
15 it(t.name, t.fn) 15 if not t.pending then
16 it(t.name, t.fn)
17 end
16 end 18 end
17 end 19 end
18 end 20 end