mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
test("copy this to a local", () => {
|
|
const foo = {
|
|
foo() {
|
|
let thisCopy = this;
|
|
thisCopy = "oops";
|
|
return this;
|
|
},
|
|
};
|
|
expect(foo.foo()).toBe(foo);
|
|
});
|