Browse Source

tests: don't skip love.graphics.isActive test on vulkan

Sasha Szpakowski 1 year ago
parent
commit
99af5765fc
1 changed files with 1 additions and 6 deletions
  1. 1 6
      testing/tests/graphics.lua

+ 1 - 6
testing/tests/graphics.lua

@@ -1890,12 +1890,7 @@ end
 
 -- love.graphics.isActive
 love.test.graphics.isActive = function(test)
-  local name, version, vendor, device = love.graphics.getRendererInfo()
-  if string.find(name, 'Vulkan') ~= nil then
-    test:skipTest('love.graphics.isActive() crashes on Vulkan')
-  else 
-    test:assertTrue(love.graphics.isActive(), 'check graphics is active') -- i mean if you got this far
-  end
+  test:assertTrue(love.graphics.isActive(), 'check graphics is active') -- i mean if you got this far
 end