aboutsummaryrefslogtreecommitdiff
path: root/test/compress/max_line_len.js
blob: 7ad9ee0e106f2c76612065f5f4a248dfffbb2840 (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
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: [
    ]
}