Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

fix: fix electron renderer tests and a couple more bugs #1105

Merged
merged 49 commits into from
Sep 17, 2019
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
2278822
fix: enable a bunch of tests in the browser
hugomrdias Sep 13, 2019
87d444e
fix: Blob can accept Buffer directly
hugomrdias Sep 13, 2019
080b4b9
fix: temp fix for electron renderer until ky-universal is fixed
hugomrdias Sep 13, 2019
000e00c
chore: use interface-core branch with fixes
hugomrdias Sep 13, 2019
d518683
chore: update interface-core
hugomrdias Sep 13, 2019
ee5fd82
chore: fix typo
hugomrdias Sep 13, 2019
05e4bba
fix: try to fix ci
hugomrdias Sep 13, 2019
d0b77c3
chore: testing timing for wantlist tests
hugomrdias Sep 13, 2019
9966025
chore: run everything in ci
hugomrdias Sep 13, 2019
61c5917
chore: test travis
hugomrdias Sep 13, 2019
02c4450
chore: remove travis cache
hugomrdias Sep 13, 2019
a8d820e
chore: disable more stuff
hugomrdias Sep 13, 2019
4106720
chore: disable more stuff 2
hugomrdias Sep 13, 2019
a289ab4
chore: test travis 2
hugomrdias Sep 13, 2019
dd977ad
chore: test travis 3
hugomrdias Sep 13, 2019
2b707bf
chore: test travis 4
hugomrdias Sep 13, 2019
4f571f6
chore: test travis 5
hugomrdias Sep 13, 2019
9b8e60f
fix: update deps
hugomrdias Sep 13, 2019
c97508c
fix: revert
hugomrdias Sep 13, 2019
276092b
fix: travis again
hugomrdias Sep 13, 2019
2e6555c
fix: travis again 2
hugomrdias Sep 13, 2019
792800b
fix: enable more test
hugomrdias Sep 15, 2019
ece1171
fix: debug
hugomrdias Sep 15, 2019
0e7140d
fix: enable more tests
hugomrdias Sep 15, 2019
4e6440b
fix: dup
hugomrdias Sep 15, 2019
dd9c57a
fix: just 3
hugomrdias Sep 15, 2019
878ff3e
fix: just 3
hugomrdias Sep 15, 2019
2c8c0ca
chore: debug stop
hugomrdias Sep 15, 2019
3b9bf02
chore: enable more
hugomrdias Sep 15, 2019
f5a9bb6
chore: remove clg
hugomrdias Sep 15, 2019
858453b
chore: dag
hugomrdias Sep 15, 2019
4074307
chore: add more
hugomrdias Sep 15, 2019
948b8f8
chore: only swarm
hugomrdias Sep 15, 2019
72907ac
chore: new setup
hugomrdias Sep 15, 2019
795eabf
chore: fix dep
hugomrdias Sep 15, 2019
8628516
chore: debug
hugomrdias Sep 15, 2019
ae5150a
fix: support create options
hugomrdias Sep 15, 2019
07e0269
chore: increade timeout
hugomrdias Sep 15, 2019
0b4f917
chore: increade timeout 2
hugomrdias Sep 15, 2019
f1a719d
chore: change aegir
hugomrdias Sep 15, 2019
73389c0
chore: change os
hugomrdias Sep 15, 2019
92d74ed
chore: test all
hugomrdias Sep 15, 2019
0ab555d
chore: change os for main
hugomrdias Sep 15, 2019
0504d11
chore: remove xvfb
hugomrdias Sep 15, 2019
8362a60
chore: fix fn name
hugomrdias Sep 15, 2019
966e142
chore: delete comments
hugomrdias Sep 15, 2019
30bbaa4
chore: upgrade aegir
hugomrdias Sep 16, 2019
8819e6c
chore: update interface-core
hugomrdias Sep 16, 2019
651d0d9
chore: add link to upstream ky fix
hugomrdias Sep 16, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: fix typo
  • Loading branch information
hugomrdias committed Sep 13, 2019
commit ee5fd826f9515d0ad08102f7a7b337fc0b4d74cc
12 changes: 6 additions & 6 deletions .aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const EchoServer = require('interface-ipfs-core/src/utils/echo-http-server')
const server = createServer()
const echoServer = EchoServer.createServer()

const echoServeStart = promisify(echoServer.start)
const echoServeStop = promisify(echoServer.stop)
const echoServerStart = promisify(echoServer.start)
const echoServerStop = promisify(echoServer.stop)
module.exports = {
bundlesize: { maxSize: '245kB' },
webpack: {
Expand All @@ -27,21 +27,21 @@ module.exports = {
},
hooks: {
node: {
pre: () => echoServeStart(),
post: () => echoServeStop()
pre: () => echoServerStart(),
post: () => echoServerStop()
},
browser: {
pre: () => {
return Promise.all([
server.start(),
echoServeStart()
echoServerStart()

])
},
post: () => {
return Promise.all([
server.stop(),
echoServeStop()
echoServerStop()
])
}
}
Expand Down