Skip to content

Commit

Permalink
Remove meteor-apm-agent
Browse files Browse the repository at this point in the history
  • Loading branch information
fredmaiaarantes committed Dec 11, 2023
1 parent 82b7346 commit 96e2975
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ [email protected]
mdg:seo
percolate:migrations
[email protected]
mdg:meteor-apm-agent
react-meteor-accounts
meteortesting:mocha
jam:easy-schema
3 changes: 0 additions & 3 deletions .meteor/versions
9 changes: 8 additions & 1 deletion api/tasks/tasks.methods.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,19 @@ if (Meteor.isServer) {

beforeEach(async () => {
mockLoggedUserId(userId);
await Tasks.removeAsync({});
await Tasks.removeAsync({})
.catch((error) => {
// eslint-disable-next-line no-console
console.error(error);
});
taskId = await Tasks.insertAsync({
description: 'Test Task',
done: false,
createdAt: new Date(),
userId,
}).catch((error) => {
// eslint-disable-next-line no-console
console.error(error);
});
});

Expand Down

0 comments on commit 96e2975

Please sign in to comment.