diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-05 07:33:26 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-05 07:33:26 -0400 |
commit | 6ffcc2b8002d37986b3ee2b9471c460af8d0c669 (patch) | |
tree | b1ed59023c0718700990cc1100e8cf6ecbc6acf3 /test/helpers.lua | |
parent | f274b84e1e4676e8a499e4ad70f4501d5f4fe305 (diff) | |
download | rneovim-6ffcc2b8002d37986b3ee2b9471c460af8d0c669.tar.gz rneovim-6ffcc2b8002d37986b3ee2b9471c460af8d0c669.tar.bz2 rneovim-6ffcc2b8002d37986b3ee2b9471c460af8d0c669.zip |
fixup: exclude node_modules/ for crash detection
node.js client uses lodash which has core.js.
Diffstat (limited to 'test/helpers.lua')
-rw-r--r-- | test/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers.lua b/test/helpers.lua index 0d3fe1316b..a774a67df3 100644 --- a/test/helpers.lua +++ b/test/helpers.lua @@ -259,7 +259,7 @@ local function check_cores(app, force) else initial_path = '.' re = '/core[^/]*$' - exc_re = { '^/%.deps$', local_tmpdir } + exc_re = { '^/%.deps$', local_tmpdir, '^/%node_modules$' } db_cmd = gdb_db_cmd random_skip = true end |