aboutsummaryrefslogtreecommitdiff
path: root/webtests
diff options
context:
space:
mode:
authorZachary Sloan2013-08-22 18:18:11 -0500
committerZachary Sloan2013-08-22 18:18:11 -0500
commitc5fc931621707865357ace4b637db7481e0be552 (patch)
tree2d09c4bc3c6812fda40eb2df3f0e0595d9bfdb29 /webtests
parent73ad2b41c0f9ca45b06de467400184f7b1bd9d91 (diff)
downloadgenenetwork2-c5fc931621707865357ace4b637db7481e0be552.tar.gz
Added show_trait_js_test to the tests run by test_runner
Fixed the part of show_trait_js_test that checks that the style is "display: none;"
Diffstat (limited to 'webtests')
-rw-r--r--webtests/show_trait_js_test.py2
-rw-r--r--webtests/test_runner.py7
2 files changed, 5 insertions, 4 deletions
diff --git a/webtests/show_trait_js_test.py b/webtests/show_trait_js_test.py
index 35e6c758..0fd2c16c 100644
--- a/webtests/show_trait_js_test.py
+++ b/webtests/show_trait_js_test.py
@@ -31,7 +31,7 @@ title: KIN/YSM Human OFC Affy Hu-Exon 1.0 ST (Jul11) Quantile : 3081205: Display
Check that the Calculate Correlations tab is closed (if javascript isn't working, it will be open)
>>> test.get_element_style('''//*[@id="sectionbody3"]''')
-style: "display: none;"
+style: display: none;
"""
diff --git a/webtests/test_runner.py b/webtests/test_runner.py
index d2d6339d..ef6d0d69 100644
--- a/webtests/test_runner.py
+++ b/webtests/test_runner.py
@@ -4,9 +4,10 @@ import unittest
import doctest
import glob
-#tests = ("correlation_test",
-# "correlation_matrix_test",
-# "marker_regression_test")
+tests = ("correlation_test",
+ "correlation_matrix_test",
+ "marker_regression_test",
+ "show_trait_js_test")
def main():