From 67d5654c1d4adcd8e593396e4a25ec84971701ce Mon Sep 17 00:00:00 2001 From: Julio Date: Thu, 12 Sep 2024 19:13:24 +0200 Subject: [PATCH] Fix lint --- apps/meteor/tests/end-to-end/api/24-methods.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/meteor/tests/end-to-end/api/24-methods.js b/apps/meteor/tests/end-to-end/api/24-methods.js index 36e1e813b7b4..0029ecd78652 100644 --- a/apps/meteor/tests/end-to-end/api/24-methods.js +++ b/apps/meteor/tests/end-to-end/api/24-methods.js @@ -3533,7 +3533,7 @@ describe('Meteor.methods', function () { expect(data.result.length).to.be.greaterThan(0); expect(data).to.have.a.property('msg', 'result'); expect(data).to.have.a.property('id', '18'); - data.result.forEach((item: any) => { + data.result.forEach((item) => { expect(item).to.have.all.keys('_id', 'ts', 'results', 'u', 'fields', '_updatedAt'); expect(item.u).to.not.have.property('services'); expect(item.u).to.not.have.property('roles');