Skip to content

Commit

Permalink
feat(integration-config): allow override of test server
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Jun 15, 2015
1 parent d06dea2 commit 1cd72a8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/integration/qpid/config.js
@@ -1,5 +1,5 @@
'use strict';
module.exports = {
address: 'amqp://localhost',
address: (process.env.SERVER ? 'amqp://'+process.env.SERVER : 'amqp://localhost'),
defaultLink: 'amq.topic'
};

0 comments on commit 1cd72a8

Please sign in to comment.