Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Refactor integration test framework - Closes #1013 #1022

Merged
merged 14 commits into from
Nov 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ sftp-config.json
*.swo
tmux-client-*.log
Session.vim
test/integration/pm2.integration.json
test/integration/logs/
test/integration/configs/
!test/integration/configs/config.non-forge.json
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ module.exports = function (grunt) {
},

testIntegration: {
command: './node_modules/.bin/_mocha --bail test/integration/peers.integration.js ',
command: './node_modules/.bin/_mocha --bail test/integration/index.js ',
maxBuffer: maxBufferSize
},

Expand Down
4 changes: 3 additions & 1 deletion test/integration/index.js
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
require('./peers.integration');
'use strict';

require('./transport');
Loading