blob: 983d1686091f5110c90de957c2ca2b80f7abb89b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- Test if ":options" throws any exception. The options window seems to mess
-- other tests, so restart nvim in the teardown hook
local helpers = require('test.functional.helpers')
local restart, command, clear = helpers.restart, helpers.command, helpers.clear
describe('options', function()
setup(clear)
teardown(restart)
it('is working', function()
command('options')
end)
end)
|