Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
julio-cfa committed Sep 12, 2024
1 parent 5298bb7 commit 67d5654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/tests/end-to-end/api/24-methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 67d5654

Please sign in to comment.