Update mock tests

This commit is contained in:
Aaron Smith 2023-08-09 17:58:17 +01:00
parent 04e28f390d
commit b3c600acc3
13 changed files with 94 additions and 246 deletions

View file

@ -1,12 +1,13 @@
local typeof = typeof
if not game then
script = (require :: any) "test/wrap-require"
typeof = require "test/mock".typeof
script = require "test/wrap-require"
typeof = require "test/mock".typeof :: any
end
local graph = require(script.Parent.graph)
type Node<T> = graph.Node<T>
local throw = require(script.Parent.throw)
local bind = require(script.Parent.bind)
local _, is_action = require(script.Parent.action)()