1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
2 |
<html> |
3 |
<head> |
4 |
<title>JSCoverage - help</title> |
5 |
<link rel="stylesheet" type="text/css" href="reset-fonts-grids.css"> |
6 |
<link rel="stylesheet" type="text/css" href="style.css"> |
7 |
</head> |
8 |
<body> |
9 |
<div id="doc3" class="yui-t5"> |
10 |
<div id="hd"><h1><a href="./">JSCoverage</a><br><span class="tag">code coverage for JavaScript</span></h1></div> |
11 |
<div id="bd"> |
12 |
<div id="yui-main"> |
13 |
<div id="jscoverage-main" class="yui-b"> |
14 |
<h2><abbr title="Frequently Asked Questions">FAQ</abbr></h2> |
15 |
|
16 |
<h3>Can JSCoverage be used with <a href="http://www.jsunit.net/">JsUnit</a>?</h3> |
17 |
|
18 |
<p> |
19 |
It is necessary to run JSCoverage in <dfn>inverted mode</dfn>. You will have to |
20 |
modify JsUnit to launch JSCoverage. |
21 |
</p> |
22 |
|
23 |
<p> |
24 |
See the directory <code>doc/example-jsunit</code> for an example. It |
25 |
contains a copy of JsUnit version 2.2alpha11, with the file |
26 |
<code>jsunit/app/main-data.html</code> slightly modified to add a button |
27 |
which launches JSCoverage. It also contains a simple unit test file <code>test.html</code>. You |
28 |
can instrument this example as follows: |
29 |
</p> |
30 |
|
31 |
<pre> |
32 |
jscoverage --no-instrument=jsunit doc/example-jsunit doc/instrumented-jsunit |
33 |
</pre> |
34 |
|
35 |
<p> |
36 |
You can then run the <code>test.html</code> file in JsUnit's <code>jsunit/testRunner.html</code>. |
37 |
The simplest way to do this is probably to copy the contents of <code>doc/instrumented-jsunit</code> |
38 |
to the root of a web server and then access the URL |
39 |
</p> |
40 |
|
41 |
<pre> |
42 |
http://127.0.0.1/jsunit/testRunner.html?testPage=http://127.0.0.1/test.html&autorun=true |
43 |
</pre> |
44 |
|
45 |
<h3>I'm trying to load my code with the URL |
46 |
<code>file:///C:/foo/bar/jscoverage.html?foo/bar.html</code> |
47 |
and I'm getting all kinds of JavaScript errors.</h3> |
48 |
|
49 |
<p> |
50 |
Internet Explorer 6 seems to have problems with a <code>file:</code> URL |
51 |
that has a query string with a slash in it. |
52 |
</p> |
53 |
<p> |
54 |
As a workaround: |
55 |
</p> |
56 |
<ul class="list"> |
57 |
<li>Place your files on a web server instead of loading them from the file system. |
58 |
(<code>http:</code> URLs work fine.) |
59 |
<li>Do not use a query string; enter your URL in the "URL" field in the "Browser" tab. |
60 |
<li>Rearrange your directory structure so that <code>bar.html</code> |
61 |
ends up in the same directory as <code>jscoverage.html</code>; then |
62 |
you can use the URL |
63 |
<code>file:///C:/foo/bar/jscoverage.html?bar.html</code> |
64 |
with no slash in the query string. |
65 |
<li>Use a different browser. (IE 7 seems to work.) |
66 |
</ul> |
67 |
|
68 |
<h3>JSCoverage changes my cursor to a busy cursor, and it never changes back!</h3> |
69 |
|
70 |
<p> |
71 |
Certain browsers (<i>e. g</i>., Internet Explorer 6, Opera, Safari) have trouble changing |
72 |
the cursor. Try moving the mouse and your cursor should change back to normal. |
73 |
</p> |
74 |
|
75 |
<p> |
76 |
See the discussion <a href="http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/631908bd63241136/783c307480f95d8c">here</a> for more information. |
77 |
</p> |
78 |
|
79 |
<h3>JSCoverage hangs sometimes when rendering the coverage report.</h3> |
80 |
|
81 |
<p> |
82 |
With Internet Explorer 6 (I think I see a pattern here), garbage collection can cause performance problems. |
83 |
(More information <a href="http://ajaxian.com/archives/garbage-collection-in-ie6">here</a>.) |
84 |
</p> |
85 |
|
86 |
</div> |
87 |
</div> |
88 |
<div id="jscoverage-sidebar" class="yui-b"> |
89 |
<ul> |
90 |
<li><a href="./">Home</a> |
91 |
<li><a href="news.html">News</a> <a href="http://siliconforks.com/jscoverage/news.xml" type="application/rss+xml" title="RSS feed for JSCoverage"><img src="feed-icon-14x14.png" alt="RSS feed"></a> |
92 |
<li><a href="manual.html">Documentation</a> |
93 |
<li><a href="demo.html">Demo</a> |
94 |
<li><a href="download.html">Download</a> |
95 |
<li>FAQ |
96 |
<li><a href="help.html">Help</a> |
97 |
<li><a href="license.html">License</a> |
98 |
<li><a href="links.html">Links</a> |
99 |
</ul> |
100 |
</div> |
101 |
</div> |
102 |
<div id="ft"> |
103 |
<address> |
104 |
Copyright © 2007 siliconforks.com<br> |
105 |
Last updated August 15, 2007<br> |
106 |
<a href="mailto:jscoverage@siliconforks.com">jscoverage@siliconforks.com</a> |
107 |
</address> |
108 |
</div> |
109 |
</div> |
110 |
</body> |
111 |
</html> |