mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 07:07:23 +00:00
test-js: Use prettier and format all files
This commit is contained in:
committed by
Andreas Kling
parent
e532888242
commit
6d58c48c2f
@@ -1,39 +1,39 @@
|
||||
test("basic method shorthand", () => {
|
||||
const o = {
|
||||
foo: "bar",
|
||||
getFoo() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o.getFoo()).toBe("bar");
|
||||
const o = {
|
||||
foo: "bar",
|
||||
getFoo() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o.getFoo()).toBe("bar");
|
||||
});
|
||||
|
||||
test("numeric literal method shorthand", () => {
|
||||
const o = {
|
||||
foo: "bar",
|
||||
12() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o[12]()).toBe("bar");
|
||||
const o = {
|
||||
foo: "bar",
|
||||
12() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o[12]()).toBe("bar");
|
||||
});
|
||||
|
||||
test("string literal method shorthand", () => {
|
||||
const o = {
|
||||
foo: "bar",
|
||||
"hello friends"() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o["hello friends"]()).toBe("bar");
|
||||
const o = {
|
||||
foo: "bar",
|
||||
"hello friends"() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o["hello friends"]()).toBe("bar");
|
||||
});
|
||||
|
||||
test("computed property method shorthand", () => {
|
||||
const o = {
|
||||
foo: "bar",
|
||||
[4 + 10]() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o[14]()).toBe("bar");
|
||||
const o = {
|
||||
foo: "bar",
|
||||
[4 + 10]() {
|
||||
return this.foo;
|
||||
},
|
||||
};
|
||||
expect(o[14]()).toBe("bar");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user