-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lua preloaded code not preloaded #313
Comments
Does anything else than |
Does anything else than it and describe work when put in preloaded? Preloaded is not meant to hold elements of tests |
I am not very familiar with LUA and its module loading mechanisms, and I did not manage to figure out how to make |
Describe the bug
In Lua, if the test case doesn't include
require "setup"
, the preloaded code will not be preloaded. Even ifrequire "setup"
is included, functions likedescribe
orit
will not be be accessible.To Reproduce
Without
require "setup"
With
require "setup"
Expected behavior
The preloaded code should preloaded correctly.
The text was updated successfully, but these errors were encountered: