Hello,
I saw on the doc that http package is deprecated but there is still a reference to this package in meteortesting:mocha
Package.describe({
name: 'meteortesting:mocha',
summary: 'Run Meteor package or app tests with Mocha',
git: 'https://github.com/meteortesting/meteor-mocha.git',
documentation: '../README.md',
version: '2.0.3',
testOnly: true,
});
Package.onUse(function onUse(api) {
api.use([
'meteortesting:mocha-core@8.0.0',
'ecmascript@0.15.1',
]);
api.use(['meteortesting:browser-tests@1.3.2', 'http@1.0.0 || 2.0.0'], 'server');
api.use('browser-policy@1.0.0', 'server', { weak: true });
api.use('lmieulet:meteor-coverage@1.1.4 || 2.0.1 || 3.0.0 || 4.0.0', 'client', { weak: true });
api.mainModule('client.js', 'client');
This file has been truncated. show original
Should we do something ?
meteortesting:mocha@2.0.3
├── ecmascript@0.16.0 (top level)
├─┬ http@1.4.4
│ ├── modules@0.17.0 (expanded above)
│ └── url@1.3.2 (expanded above)
├─┬ meteortesting:browser-tests@1.3.4
│ └── ecmascript@0.16.0 (top level)
└─┬ meteortesting:mocha-core@8.1.2
└── ecmascript@0.16.0 (top level)
`
harry97
November 20, 2021, 3:03pm
2
I think opening up a PR would be the best way. @storyteller and Meteor community packages is in charge of managing it now so accepting PRs would be of no problem.
meteortesting:mocha
definitely needs a lot of work as it still uses old dependencies so any bit of update would help.
1 Like
It is on my long list of things to get to and upgrade. If anyone wants to help with this and upgrade it to fetch I would much appreciate it.
1 Like
I can help out with reviews but have currently not much time for implementation