test: reduce some clear() calls

Use only a single clear() call in some test/functional/vimscript/ test
files whose test cases have very little side effect.

A downside of using a single clear() is that if a crash happens in one
test case, all following test cases in the same file will also fail, but
these functionalities and tests don't change very often.
This commit is contained in:
zeertzjq
2025-09-22 10:28:26 +08:00
parent 4adfc4b7bc
commit 777dafdc46
12 changed files with 22 additions and 23 deletions

View File

@@ -7,7 +7,7 @@ local command = n.command
local exc_exec = n.exc_exec
local pcall_err = t.pcall_err
before_each(clear)
setup(clear)
describe('uniq()', function()
it('errors out when processing special values', function()