git ssb

1+

dinoworm ๐Ÿ› / catstack



Commit 74e3a3c633fc81051fd5a1ae435ad82206114dca

Merge pull request #26 from enspiral-craftworks/ci

continuous integration
Mikey committed on 1/16/2016, 12:22:57 AM
Parent: 2a3d6d9180c1bf18cc316abc4dd7bac73115a41c
Parent: f752ff1da907a93d1da524e1f31aed0603ad985e

Files changed

app/index.spec.jsadded
package.jsonchanged
.travis.ymladded
app/index.spec.jsView
@@ -1,0 +1,6 @@
1+import test from 'ava'
2+
3+test("imports render service", (t) => {
4+ const createServer = require('app/render').createServer
5+ t.is(typeof createServer, 'function')
6+})
package.jsonView
@@ -7,9 +7,9 @@
77 "postinstall": "lnfs app node_modules/app",
88 "lint": "snazzy",
99 "format": "snazzy --format",
1010 "test": "NODE_ENV=test npm-run-all -p test:*",
11- "test:spec": "ava -r babel-core/register",
11+ "test:spec": "ava",
1212 "test:feature": "cucumber-js",
1313 "pg:pull": "docker pull postgres",
1414 "pg:run": "docker run -d -p 5432:5432 --name=business-postgres postgres",
1515 "pg:start": "docker start business-postgres",
@@ -33,8 +33,12 @@
3333 "ava": {
3434 "cache": false,
3535 "files": [
3636 "**/*.spec.js"
37+ ],
38+ "require": [
39+ "babel-core/register",
40+ "css-modules-require-hook"
3741 ]
3842 },
3943 "repository": {
4044 "type": "git",
@@ -63,9 +67,9 @@
6367 "node": "^4.0.0",
6468 "npm": "^3.0.0"
6569 },
6670 "devDependencies": {
67- "ava": "github:sindresorhus/ava#16c7282e97c9ab671bc1d56920fd3fb125a65eab",
71+ "ava": "^0.10.0",
6872 "babel-plugin-react-transform": "^2.0.0",
6973 "browserify-hmr": "^0.3.1",
7074 "cucumber": "^0.9.2",
7175 "ecstatic-lr": "^1.0.1",
@@ -94,8 +98,9 @@
9498 "babel-preset-es2015": "^6.1.18",
9599 "babel-preset-react": "^6.1.18",
96100 "babel-runtime": "^6.2.0",
97101 "babelify": "^7.2.0",
102+ "body-parser": "^1.14.2",
98103 "browserify": "github:ahdinosaur/node-browserify",
99104 "bulk-require": "^0.2.1",
100105 "bulkify": "^1.1.1",
101106 "cors": "^2.7.1",
.travis.ymlView
@@ -1,0 +1,14 @@
1+language: node_js
2+node_js:
3+ - "4"
4+ - "5"
5+env:
6+ - CXX=g++-4.8
7+addons:
8+ apt:
9+ sources:
10+ - ubuntu-toolchain-r-test
11+ packages:
12+ - g++-4.8
13+notifications:
14+ email: false

Built with git-ssb-web