LibJS/Tests: Remove outdated FIXME comment

This commit is contained in:
Linus Groh 2021-08-13 23:59:05 +01:00
parent 95059b9549
commit f51f5e135a
Notes: sideshowbarker 2024-07-18 07:00:35 +09:00

View File

@ -13,7 +13,6 @@ describe("[[Call]] trap normal behavior", () => {
const handler = {
apply(target, this_, arguments_) {
expect(target).toBe(f);
// FIXME: `this_` is currently `handler`
expect(this_).toBeUndefined();
if (arguments_[2]) {
return arguments_[0] * arguments_[1];