diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2024-04-12 00:52:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 01:52:53 +0200 |
commit | f427583ec497f80aa2f80ac4d34dc44b7e23643f (patch) | |
tree | 094de71101c670b8f13fabe60d40901033d6d2c2 /Northstar.Custom/mod.json | |
parent | 11787b3896b8242ac8f7e583d72cabf68f9161a9 (diff) | |
download | NorthstarMods-f427583ec497f80aa2f80ac4d34dc44b7e23643f.tar.gz NorthstarMods-f427583ec497f80aa2f80ac4d34dc44b7e23643f.zip |
Add initial unit testing logic (#708)v1.25.0-rc2v1.25.0
Adds initial logic to allow for some form of basic unit testing.
Diffstat (limited to 'Northstar.Custom/mod.json')
-rw-r--r-- | Northstar.Custom/mod.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json index 399311e4..69432f49 100644 --- a/Northstar.Custom/mod.json +++ b/Northstar.Custom/mod.json @@ -441,6 +441,19 @@ "RunOn": "CLIENT || SERVER || UI" }, { + "Path": "_testing.nut", + "RunOn": "CLIENT || SERVER || UI", + "ClientCallback": { + "Before": "Testing_Init" + }, + "ServerCallback": { + "Before": "Testing_Init" + }, + "UICallback": { + "Before": "Testing_Init" + } + }, + { "Path": "_event_models.gnut", "RunOn": "SERVER && LOBBY", "ServerCallback": { |