From 33f2d01971904e02f1335f4c4dede8a04d0d9410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Thu, 1 Apr 2021 22:01:21 +0900 Subject: [PATCH] Remove wrong test for #1455 --- tests/fixture/issue-1455/case3/input/index.ts | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 tests/fixture/issue-1455/case3/input/index.ts diff --git a/tests/fixture/issue-1455/case3/input/index.ts b/tests/fixture/issue-1455/case3/input/index.ts deleted file mode 100644 index b60561307d67..000000000000 --- a/tests/fixture/issue-1455/case3/input/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -const obj = { - find({ platform }) { - return { platform } - }, - byPlatform: function (platform) { - const result = await this.find({ platform: { $eq: platform } }); - return result; - }, -}; - -console.log(obj.byPlatform('foo')); \ No newline at end of file