forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.aegir.js
63 lines (57 loc) · 1.23 KB
/
.aegir.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'use strict'
const { createServer } = require('ipfsd-ctl')
const EchoServer = require('aegir/utils/echo-server')
const server = createServer({
host: '127.0.0.1',
port: 48372
}, {
type: 'go',
ipfsHttpModule: require('./'),
ipfsBin: require('go-ipfs').path()
})
let echoServer = new EchoServer()
module.exports = {
bundlesize: { maxSize: '90kB' },
karma: {
files: [{
pattern: 'node_modules/interface-ipfs-core/test/fixtures/**/*',
watched: false,
served: true,
included: false
}],
browserNoActivityTimeout: 210 * 1000,
singleRun: true
},
hooks: {
node: {
pre: async () => {
await echoServer.start()
return {
env: {
ECHO_SERVER: `http://${echoServer.host}:${echoServer.port}`
}
}
},
post: () => echoServer.stop()
},
browser: {
pre: async () => {
await Promise.all([
server.start(),
echoServer.start()
])
return {
env: {
ECHO_SERVER: `http://${echoServer.host}:${echoServer.port}`
}
}
},
post: () => {
return Promise.all([
server.stop(),
echoServer.stop()
])
}
}
}
}