Skip to content

Commit 96e2975

Browse files
Remove meteor-apm-agent
1 parent 82b7346 commit 96e2975

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.meteor/packages

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ [email protected]
2525
mdg:seo
2626
percolate:migrations
2727
28-
mdg:meteor-apm-agent
2928
react-meteor-accounts
3029
meteortesting:mocha
3130
jam:easy-schema

.meteor/versions

-3

api/tasks/tasks.methods.tests.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,19 @@ if (Meteor.isServer) {
1313

1414
beforeEach(async () => {
1515
mockLoggedUserId(userId);
16-
await Tasks.removeAsync({});
16+
await Tasks.removeAsync({})
17+
.catch((error) => {
18+
// eslint-disable-next-line no-console
19+
console.error(error);
20+
});
1721
taskId = await Tasks.insertAsync({
1822
description: 'Test Task',
1923
done: false,
2024
createdAt: new Date(),
2125
userId,
26+
}).catch((error) => {
27+
// eslint-disable-next-line no-console
28+
console.error(error);
2229
});
2330
});
2431

0 commit comments

Comments
 (0)