mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
18 lines
378 B
Lua
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)
|