All files / piscosour/steps/weather index.js

0% Statements 0/3
100% Branches 0/0
100% Functions 0/0
0% Lines 0/3
1 2 3 4 5 6 7 8 9                 
'use strict';
 
module.exports = {
  run() {
    this.logger.info('Weather in ', '#green', this.params.city);
    this.sh(`curl -s -A curl http://wttr.in/${this.params.city}`, null, true);
  }
};