Commit cba37e3aa847ed827876500c888d0c240f7b3f31
use local .babelrc and don't cache ava
Michael Williams committed on 1/9/2016, 5:37:02 AMParent: e90509c961bcbabb52a702d7c3e6b9353ceb5dd9
Files changed
package.json | changed |
package.json | ||
---|---|---|
@@ -7,9 +7,9 @@ | ||
7 | 7 | "postinstall": "lnfs app node_modules/app", |
8 | 8 | "lint": "snazzy", |
9 | 9 | "format": "snazzy --format", |
10 | 10 | "test": "NODE_ENV=test npm-run-all -p test:*", |
11 | - "test:spec": "ava", | |
11 | + "test:spec": "ava -r babel-core/register", | |
12 | 12 | "test:feature": "cucumber-js", |
13 | 13 | "pg:pull": "docker pull postgres", |
14 | 14 | "pg:run": "docker run -d -p 5432:5432 --name=business-postgres postgres", |
15 | 15 | "pg:start": "docker start business-postgres", |
@@ -30,8 +30,9 @@ | ||
30 | 30 | "dev": "NODE_ENV=development npm-run-all -p dev:*", |
31 | 31 | "prod": "NODE_ENV=production npm-run-all prod:render-browser prod:assets -p prod:render-node prod:api prod:static" |
32 | 32 | }, |
33 | 33 | "ava": { |
34 | + "cache": false, | |
34 | 35 | "files": [ |
35 | 36 | "**/*.spec.js" |
36 | 37 | ] |
37 | 38 | }, |
Built with git-ssb-web