diff --git a/.travis.yml b/.travis.yml index 53706b8..5eb0b39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,10 +24,18 @@ jobs: node_js: lts/* - stage: test 👩🏽‍💻 + os: linux script: npm run test:cov node_js: node - - node_js: lts/* - # - os: windows - # node_js: node - # - os: windows - # node_js: lts/* + + - os: linux + script: npm run test:cov + node_js: lts/* + + - os: windows + script: npm run test:cov + node_js: node + + - os: windows + script: npm run test:cov + node_js: lts/* diff --git a/package.json b/package.json index 281595a..8d30065 100644 --- a/package.json +++ b/package.json @@ -36,12 +36,12 @@ "uuid": "^3.3.3" }, "scripts": { - "test": "tap --no-cov 'test/**/*.test.js'", - "test:cov": "tap 'test/**/*.test.js'", - "test:cov:html": "tap --coverage-report=html 'test/**/*.test.js'", - "test:watch": "tap -n -w --no-coverage-report 'test/**/*.test.js'", - "lint": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js' | snazzy", - "lint:ci": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js'" + "test": "tap --no-cov test/**/*.test.js", + "test:cov": "tap test/**/*.test.js", + "test:cov:html": "tap --coverage-report=html test/**/*.test.js", + "test:watch": "tap -n -w --no-coverage-report test/**/*.test.js", + "lint": "standard examples/**/*.js lib/**/*.js test/**/*.js | snazzy", + "lint:ci": "standard examples/**/*.js lib/**/*.js test/**/*.js" }, "husky": { "hooks": {