1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
local Runner = require("tests.indent.common").Runner
-- local XFAIL = require("tests.indent.common").XFAIL
local run = Runner:new(it, "tests/indent", {
tabstop = 2,
shiftwidth = 2,
softtabstop = 0,
expandtab = true,
filetype = "javascript",
})
describe("indent JavaScript:", function()
describe("whole file:", function()
run:whole_file({ "ecma/" }, {
expected_failures = {},
})
end)
describe("new line:", function()
for _, info in ipairs {
{ 1, 2 },
{ 2, 2 },
{ 3, 2 },
{ 4, 2 },
{ 5, 2 },
{ 6, 2 },
{ 7, 0 },
} do
run:new_line("ecma/try_catch.js", { on_line = info[1], text = "hello()", indent = info[2] })
end
for _, info in ipairs {
{ 1, 2 },
{ 2, 2 },
{ 3, 2 },
{ 5, 4 },
{ 6, 4 },
{ 8, 2 },
{ 9, 2 },
{ 12, 2 },
{ 13, 0 },
} do
run:new_line("ecma/if_else.js", { on_line = info[1], text = "hello()", indent = info[2] })
end
end)
end)
|