Skip to content

Commit 4cb1a09

Browse files
committed
Add tomato bot report
1 parent 41b467d commit 4cb1a09

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
language: node_js
2-
sudo: false
2+
sudo: true
33
node_js:
44
- "node"
55
- "lts/*"
66
install:
77
- npm install
8+
- sudo pip install git+https://github.com/moshe/pytest-tomato.git@debug#subdirectory=tomato-lib
89
script:
910
- npm test
11+
after_script:
12+
- tomato eslint.xml

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"test": "eslint ."
7+
"test": "eslint . -f junit > eslint.xml"
88
},
99
"author": "",
1010
"license": "ISC",

src/mainGrid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const RegressionLog = require('./components/regressionLog');
55

66
class BasicGrid {
77
constructor(options) {
8-
this.start = new Date();
8+
this.start = new Date()
99
options.points = parseInt(options.points, 10);
1010
options.regressionPoints = parseInt(options.regressionPoints, 10);
1111
this.options = options;

0 commit comments

Comments
 (0)