aboutsummaryrefslogtreecommitdiff
path: root/test/compress/max_line_len.js
blob: 5be4e059c379da1c301cce8a43627c098b867de4 (about) (plain)
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
47
48
49
50
51
52
53
too_short: {
    beautify = {
        max_line_len: 10,
    }
    input: {
        function f(a) {
            return { c: 42, d: a(), e: "foo"};
        }
    }
    expect_exact: [
        "function f(",
        "a){return{",
        "c:42,d:a(",
        '),e:"foo"}',
        "}",
    ]
    expect_warnings: [
        "WARN: Output exceeds 10 characters",
    ]
}

just_enough: {
    beautify = {
        max_line_len: 14,
    }
    input: {
        function f(a) {
            return { c: 42, d: a(), e: "foo"};
        }
    }
    expect_exact: [
        "function f(a){",
        "return{c:42,",
        'd:a(),e:"foo"}',
        "}",
    ]
    expect_warnings: []
}

issue_304: {
    beautify = {
        max_line_len: 10,
    }
    input: {
        var a = 0, b = 0, c = 0, d = 0, e = 0;
    }
    expect_exact: [
        "var a=0,",
        "b=0,c=0,",
        "d=0,e=0;",
    ]
    expect_warnings: []
}