summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests/classes/class-static.js
blob: 5bfd28c3dac743aceffe331cd9938798dc3c2b2c (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
test("basic functionality", () => {
    class A {
        static method() {
            return 10;
        }
    }

    expect(A.method()).toBe(10);
    expect(new A().method).toBeUndefined();
});

test("extended name syntax", () => {
    class A {
        static method() {
            return 1;
        }

        static 12() {
            return 2;
        }

        static [`he${"llo"}`]() {
            return 3;
        }
    }

    expect(A.method()).toBe(1);
    expect(A[12]()).toBe(2);
    expect(A.hello()).toBe(3);
});

test("bound |this|", () => {
    class A {
        static method() {
            expect(this).toBe(A);
        }
    }

    A.method();
});

test("inherited static methods", () => {
    class Parent {
        static method() {
            return 3;
        }
    }

    class Child extends Parent {}

    expect(Parent.method()).toBe(3);
    expect(Child.method()).toBe(3);
    expect(new Parent()).not.toHaveProperty("method");
    expect(new Child()).not.toHaveProperty("method");
});

test("static method overriding", () => {
    class Parent {
        static method() {
            return 3;
        }
    }

    class Child extends Parent {
        static method() {
            return 10;
        }
    }

    expect(Parent.method()).toBe(3);
    expect(Child.method()).toBe(10);
});