Skip to content

Commit 1cfbd08

Browse files
dryajovdaviddias
authored andcommittedJan 16, 2018
feat: Complete revamp! Spawn js/go daemons locally or remote (from the browser) (#176)
1 parent 3c328de commit 1cfbd08

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+3678
-863
lines changed
 

‎.aegir.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
'use strict'
2+
3+
const createServer = require('./src').createServer
4+
5+
const server = createServer()
6+
module.exports = {
7+
karma: {
8+
files: [{
9+
pattern: 'test/fixtures/**/*',
10+
watched: false,
11+
served: true,
12+
included: false
13+
}],
14+
singleRun: true
15+
},
16+
hooks: {
17+
browser: {
18+
pre: server.start.bind(server),
19+
post: server.stop.bind(server)
20+
}
21+
}
22+
}

‎.appveyor.yml

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
1+
version: "{build}"
2+
13
environment:
24
matrix:
35
- nodejs_version: "6"
46
- nodejs_version: "8"
57

6-
# cache:
7-
# - node_modules
8-
9-
platform:
10-
- x64
8+
matrix:
9+
fast_finish: true
1110

1211
install:
13-
- ps: Install-Product node $env:nodejs_version $env:platform
12+
# Install Node.js
13+
- ps: Install-Product node $env:nodejs_version
14+
15+
# Upgrade npm
16+
- npm install -g npm
17+
18+
# Output our current versions for debugging
1419
- node --version
1520
- npm --version
21+
22+
# Install our package dependencies
1623
- npm install
1724

1825
test_script:
19-
- npm test
26+
- npm run test
2027

2128
build: off
22-
23-
version: "{build}"

0 commit comments

Comments
 (0)