summaryrefslogtreecommitdiff
path: root/share/www/script/test/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/script/test/config.js')
-rw-r--r--share/www/script/test/config.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/share/www/script/test/config.js b/share/www/script/test/config.js
index 58e32776..3cba360d 100644
--- a/share/www/script/test/config.js
+++ b/share/www/script/test/config.js
@@ -28,8 +28,8 @@ couchTests.config = function(debug) {
Overengineering FTW.
*/
var server_port = CouchDB.host.split(':');
+ var proto = window.location.protocol;
if(server_port.length == 1 && CouchDB.inBrowser) {
- var proto = window.location.protocol;
if(proto == "http:") {
port = 80;
}
@@ -40,8 +40,15 @@ couchTests.config = function(debug) {
port = server_port.pop();
}
+ if(proto == "http:") {
+ config_port = config.httpd.port;
+ }
+ if(proto == "https:") {
+ config_port = config.ssl.port;
+ }
+
if(port) {
- T(config.httpd.port == port);
+ TEquals(config_port, port, "ports should match");
}
T(config.couchdb.database_dir);