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');