Skip to content

Commit 1725d07

Browse files
committed
Deploy lmieulet:[email protected] and small changes
1 parent c388947 commit 1725d07

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,17 @@ Now open your [browser test page localhost:3000/](http://localhost:3000/) and th
106106

107107
# Creates an html export inside coverage_app_folder/output_folder/index.html
108108
Meteor.exportCoverage("html", function(err) {console.log(err)})
109-
109+
110110
Refresh the [localhost:3000/coverage](http://localhost:3000/coverage) in your browser to see there is client coverage now.
111-
111+
112112
### Specific setup for Meteor package
113113

114114
In a meteor package, you need to add inside the `package.js` file:
115115

116116
```js
117117
[...]
118118
Package.onTest(function (api) {
119-
api.use(['lmieulet:meteor-legacy-coverage@0.1.0', 'lmieulet:[email protected]','meteortesting:mocha']);
119+
api.use(['lmieulet:meteor-legacy-coverage@0.2.0', 'lmieulet:[email protected]','meteortesting:mocha']);
120120
[...]
121121
});
122122
```

package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Package.onUse(function (api) {
4343

4444
Package.onTest(function (api) {
4545
api.use('ecmascript');
46-
api.use('lmieulet:meteor-legacy-coverage@0.1.0', 'server');
46+
api.use('lmieulet:meteor-legacy-coverage@0.2.0', 'server');
4747
api.use('http', 'client');
4848
api.use('webapp', 'server');
4949
api.use(['lmieulet:meteor-coverage']);

0 commit comments

Comments
 (0)