diff options
author | 2021-01-22 15:06:14 -0500 | |
---|---|---|
committer | 2021-01-22 15:06:14 -0500 | |
commit | c5aa8f8dec9611828b6972bc1a72cc8571eab36a (patch) | |
tree | 378495ef33fcb848782e1a5b6492c9751affa262 /modules/textadept/menu.lua | |
parent | 3cca0f2b2af03e7df8ec28231582bb3bf08042fc (diff) | |
download | textadept-c5aa8f8dec9611828b6972bc1a72cc8571eab36a.tar.gz textadept-c5aa8f8dec9611828b6972bc1a72cc8571eab36a.zip |
Added `textadept.run.test()` and `textadept.run.test_commands`.
This enables the running of project tests.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 1ae2d909..b3ce1015 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -171,6 +171,7 @@ local default_menubar = { {_L['Compile'], textadept.run.compile}, {_L['Set Arguments...'], textadept.run.set_arguments}, {_L['Build'], textadept.run.build}, + {_L['Run tests'], textadept.run.test}, {_L['Stop'], textadept.run.stop}, {_L['Next Error'], function() textadept.run.goto_error(true) end}, {_L['Previous Error'], function() textadept.run.goto_error(false) end}, |