Files
nvim-treesitter/tests/indent/nu_spec.lua
2024-11-05 15:25:42 +01:00

18 lines
378 B
Lua

local Runner = require("tests.indent.common").Runner
--local XFAIL = require("tests.indent.common").XFAIL
local run = Runner:new(it, "tests/indent/nu", {
tabstop = 2,
shiftwidth = 2,
softtabstop = -1,
expandtab = true,
})
describe("indent Nu:", function()
describe("whole file:", function()
run:whole_file(".", {
expected_failures = {},
})
end)
end)