blob: 773acb966388904fd38dde0c84e5d21de7dd4f24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- 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 command, clear = helpers.command, helpers.clear
describe('options', function()
setup(clear)
it('is working', function()
command('options')
end)
end)
|