From 19f17a71e14105aa1b19edba491613afde305f13 Mon Sep 17 00:00:00 2001 From: Edna Morales Date: Thu, 24 Jul 2014 16:42:13 -0400 Subject: [PATCH 1/2] added documentation for manual tests --- tests/tests.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/tests/tests.js b/tests/tests.js index 0d6edc821..8c0b97a7a 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -3123,6 +3123,11 @@ exports.defineManualTests = function (contentEl, createActionButton) { div.appendChild(document.createTextNode('File Systems')); div.setAttribute("align", "center"); contentEl.appendChild(div); + + div = document.createElement('h3'); + div.appendChild(document.createTextNode('Results are displayed in yellow status box below with expected results noted under that')); + div.setAttribute("align", "center"); + contentEl.appendChild(div); div = document.createElement('div'); div.setAttribute("id", "button"); @@ -3149,4 +3154,18 @@ exports.defineManualTests = function (contentEl, createActionButton) { div.setAttribute("id", "info"); div.setAttribute("align", "center"); contentEl.appendChild(div); + + div = document.createElement('h3'); + div.appendChild(document.createTextNode('For each test above, file or directory should be successfully found. ' + + 'Status box should say Resolving URL was Success. The first URL resolved is the internal URL. ' + + 'The second URL resolved is the absolute URL. Blue URLs must match.')); + div.setAttribute("align", "center"); + contentEl.appendChild(div); + + div = document.createElement('h3'); + div.appendChild(document.createTextNode('For Test private URL (iOS), the private URL (first blue URL in status box) ' + + 'should be successfully resolved. Status box should say Successfully resolved. Both blue URLs below ' + + 'that should match.')); + div.setAttribute("align", "center"); + contentEl.appendChild(div); }; From 3086907f8a99c38b3336ce6805bc9fe2ef61969b Mon Sep 17 00:00:00 2001 From: Edna Morales Date: Mon, 18 Aug 2014 13:38:29 -0400 Subject: [PATCH 2/2] cb-6724changed style detail on documentation --- tests/tests.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/tests.js b/tests/tests.js index 8c0b97a7a..f908f0c69 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -3159,13 +3159,11 @@ exports.defineManualTests = function (contentEl, createActionButton) { div.appendChild(document.createTextNode('For each test above, file or directory should be successfully found. ' + 'Status box should say Resolving URL was Success. The first URL resolved is the internal URL. ' + 'The second URL resolved is the absolute URL. Blue URLs must match.')); - div.setAttribute("align", "center"); contentEl.appendChild(div); div = document.createElement('h3'); div.appendChild(document.createTextNode('For Test private URL (iOS), the private URL (first blue URL in status box) ' + 'should be successfully resolved. Status box should say Successfully resolved. Both blue URLs below ' + 'that should match.')); - div.setAttribute("align", "center"); contentEl.appendChild(div); };