mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
19 lines
428 B
Lua
19 lines
428 B
Lua
local Runner = require('tests.indent.common').Runner
|
|
--local XFAIL = require("tests.indent.common").XFAIL
|
|
|
|
local run = Runner:new(it, 'tests/indent/graphql', {
|
|
tabstop = 2,
|
|
shiftwidth = 2,
|
|
softtabstop = 0,
|
|
expandtab = true,
|
|
})
|
|
|
|
describe('indent GraphQL:', function()
|
|
describe('whole file:', function()
|
|
run:whole_file('.', {
|
|
expected_failures = {},
|
|
})
|
|
end)
|
|
|
|
describe('new line:', function() end)
|
|
end)
|