diff options
author | Paul Joseph Davis <davisp@apache.org> | 2009-07-11 20:48:02 +0000 |
---|---|---|
committer | Paul Joseph Davis <davisp@apache.org> | 2009-07-11 20:48:02 +0000 |
commit | f4c3d873f92a4b81f7dd6990bfbba4519f95f2e6 (patch) | |
tree | 90094f4b3595fc685ec07f647e87db0594589feb /share/www/script/test | |
parent | deae5e14975c0726feb28c7e0be433e650c40f30 (diff) |
Create tests in Futon.
On the test suite page there is now a button that will give you a page to create a custom test that can then be submitted along with JIRA tickets.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@793214 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/test')
-rw-r--r-- | share/www/script/test/basics.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/share/www/script/test/basics.js b/share/www/script/test/basics.js index 231f57ff..911972ba 100644 --- a/share/www/script/test/basics.js +++ b/share/www/script/test/basics.js @@ -181,8 +181,7 @@ couchTests.basics = function(debug) { ["tastyfish", {"_bing": {"wha?": "soda can"}}] ] var test_doc = function(info) { - var data = JSON.stringify(info[1]); - + var data = JSON.stringify(info[1]); xhr = CouchDB.request("PUT", "/test_suite_db/" + info[0], {body: data}); T(xhr.status == 500); result = JSON.parse(xhr.responseText); |