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 @@ accounts-password@2.3.4
mdg:seo
percolate:migrations
force-ssl@1.1.0
mdg:meteor-apm-agent
react-meteor-accounts
meteortesting:mocha
jam:easy-schema
3 changes: 0 additions & 3 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,8 @@ id-map@1.1.1
inter-process-messaging@0.1.1
jam:easy-schema@1.1.0
launch-screen@1.3.0
livedata@1.0.18
localstorage@1.2.0
logging@1.3.2
mdg:meteor-apm-agent@3.5.1
mdg:seo@3.5.0
mdg:validation-error@0.5.1
meteor@1.11.3
Expand All @@ -64,7 +62,6 @@ mongo@1.16.7
mongo-decimal@0.1.3
mongo-dev-server@1.1.0
mongo-id@1.0.8
mongo-livedata@1.0.12
npm-mongo@4.16.0
ordered-dict@1.1.0
percolate:migrations@1.1.1
Expand Down
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.