TestEz Setup Help!

TestEZ documentation. Check here for installation and usage steps, it’s pretty well documented. I would assume you’ve seen this though since you got to the src part. Just have a little comb through the running, writing and debugging tests sections.

On another note, it seems like you can skip the process of directly copying the src folder into your repository and not sure why that isn’t a third method. It involves .gitmodules. The most common way for Roblox repositories seems to be a module folder for that.

  1. Create a blank folder in your repository called modules.
  2. Create a blank folder in the previous folder and call it TestEZ.
  3. Create a .gitmodules file in the top-level of your directory.
  4. Add TestEZ to the gitmodules file.
[submodule "modules/testez"]
	path = modules/testez
	url = https://github.com/Roblox/testez.git
2 Likes