enable the debug mode for all tests

This commit is contained in:
BlackMATov
2026-02-03 06:12:29 +07:00
parent 260f841a3b
commit 287f03ef87
14 changed files with 28 additions and 0 deletions
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local f1, f2 = evo.id(2)
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
assert(evo.defer())
assert(evo.cancel())
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
do
local p = evo.spawn()
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
assert(evo.depth() == 0)
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local e = evo.id()
assert(evo.alive(e))
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local e1, e2, f1, f2 = evo.id(4)
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local f1, f2 = evo.id(2)
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local entity_list
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local id = evo.id()
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local f = evo.id()
local e = evo.builder():set(f, 42):spawn()
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
---@type ffilib?
local ffi = (function()
if package and package.loaded then
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local f1, f2 = evo.id(2)
evo.set(f1, evo.REQUIRES)
+2
View File
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
do
local e = evo.spawn()
@@ -1,5 +1,7 @@
local evo = require 'evolved'
evo.debug_mode(true)
do
local f1, f2, f3 = evo.id(3)