mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 22:38:51 +00:00
10 lines
215 B
JavaScript
10 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);
|
|
});
|