nvim-treesitter/tests/indent/wgsl_spec.lua

20 lines
422 B
Lua
Raw Normal View History

local Runner = require('tests.indent.common').Runner
2022-08-31 00:23:49 +02:00
--local XFAIL = require("tests.indent.common").XFAIL
local run = Runner:new(it, 'tests/indent/wgsl', {
tabstop = 2,
shiftwidth = 2,
2022-08-31 00:23:49 +02:00
softtabstop = 0,
expandtab = true,
})
describe('indent WGSL:', function()
describe('whole file:', function()
run:whole_file('.', {
2022-08-31 00:23:49 +02:00
expected_failures = {},
})
end)
describe('new line:', function() end)
2022-08-31 00:23:49 +02:00
end)