<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Running jQuery QUnit tests under Continuous Integration</title>
	<atom:link href="http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/</link>
	<description></description>
	<lastBuildDate>Thu, 14 Mar 2013 03:50:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Jeremy Jarrell</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-15</link>
		<dc:creator>Jeremy Jarrell</dc:creator>
		<pubDate>Wed, 03 Nov 2010 15:08:56 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-15</guid>
		<description>Hi Joshua,

Thanks for the excellent writeup.  We we&#039;re able to take this code and run with it to get our js tests running on our CI server.

However, we&#039;ve been plagued by timeout issues when running Watin on top of IE.  Has anyone else had similar issues and discovered how to solve them?

Thanks!
Jeremy</description>
		<content:encoded><![CDATA[<p>Hi Joshua,</p>
<p>Thanks for the excellent writeup.  We we&#8217;re able to take this code and run with it to get our js tests running on our CI server.</p>
<p>However, we&#8217;ve been plagued by timeout issues when running Watin on top of IE.  Has anyone else had similar issues and discovered how to solve them?</p>
<p>Thanks!<br />
Jeremy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Flanagan</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-14</link>
		<dc:creator>Joshua Flanagan</dc:creator>
		<pubDate>Tue, 29 Jun 2010 13:00:29 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-14</guid>
		<description>@Bayard - That is what we are doing - we use WatiN (a variant of watir) to run the tests, and retrieve the output. The difference is that we do the assertions in NUnit so that each javascript test can be reported independently, instead of the entire page of tests failing or succeeding as one.</description>
		<content:encoded><![CDATA[<p>@Bayard &#8211; That is what we are doing &#8211; we use WatiN (a variant of watir) to run the tests, and retrieve the output. The difference is that we do the assertions in NUnit so that each javascript test can be reported independently, instead of the entire page of tests failing or succeeding as one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bayard Randel</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-13</link>
		<dc:creator>Bayard Randel</dc:creator>
		<pubDate>Tue, 29 Jun 2010 05:18:26 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-13</guid>
		<description>As an alternative, what are your thoughts on using a browser automation tool like selenium or watir to run the qUnit tests, and assert that the report contains no failed tests?

Our project doesn&#039;t have any unit tests against the server side code (don&#039;t ask), but we do have a good suite of integration tests.</description>
		<content:encoded><![CDATA[<p>As an alternative, what are your thoughts on using a browser automation tool like selenium or watir to run the qUnit tests, and assert that the report contains no failed tests?</p>
<p>Our project doesn&#8217;t have any unit tests against the server side code (don&#8217;t ask), but we do have a good suite of integration tests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-12</link>
		<dc:creator>Anton</dc:creator>
		<pubDate>Tue, 07 Jul 2009 14:26:14 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-12</guid>
		<description>Hey guys,

 There is TestCaseSource attribute in nunit so there is no need anymore in writing new attributes for that purpose. 
Sample:

 [TestCaseSource(&quot;ExecuteTests&quot;)]
 public void AllQunitTestsShouldPass(TestResult test)
{
....
}
</description>
		<content:encoded><![CDATA[<p>Hey guys,</p>
<p> There is TestCaseSource attribute in nunit so there is no need anymore in writing new attributes for that purpose.<br />
Sample:</p>
<p> [TestCaseSource("ExecuteTests")]<br />
 public void AllQunitTestsShouldPass(TestResult test)<br />
{<br />
&#8230;.<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-11</link>
		<dc:creator>Anton</dc:creator>
		<pubDate>Tue, 07 Jul 2009 14:25:54 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-11</guid>
		<description>Hey guys,

 There is TestCaseSource attribute in nunit so there is no need anymore in writing new attributes for that purpose. 
Sample:

 [TestCaseSource(&quot;ExecuteTests&quot;)]
 public void AllQunitTestsShouldPass(TestResult test)
{
....
}
</description>
		<content:encoded><![CDATA[<p>Hey guys,</p>
<p> There is TestCaseSource attribute in nunit so there is no need anymore in writing new attributes for that purpose.<br />
Sample:</p>
<p> [TestCaseSource("ExecuteTests")]<br />
 public void AllQunitTestsShouldPass(TestResult test)<br />
{<br />
&#8230;.<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Kruger</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-10</link>
		<dc:creator>Jon Kruger</dc:creator>
		<pubDate>Wed, 11 Feb 2009 19:02:28 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-10</guid>
		<description>This is good stuff.  Just thought I should mention (for anyone else&#039;s benefit) that I tried this with WatiN 1.3 and had all kinds of problems (had to make minor changes to make it compile, but then it still didn&#039;t work).  It all worked with the WatiN 2.0 CTP.</description>
		<content:encoded><![CDATA[<p>This is good stuff.  Just thought I should mention (for anyone else&#8217;s benefit) that I tried this with WatiN 1.3 and had all kinds of problems (had to make minor changes to make it compile, but then it still didn&#8217;t work).  It all worked with the WatiN 2.0 CTP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry Dahlberg</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-9</link>
		<dc:creator>Barry Dahlberg</dc:creator>
		<pubDate>Mon, 22 Sep 2008 07:31:41 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-9</guid>
		<description>Excellent.  Will be using this (or a variation of) in anger I&#039;m sure.</description>
		<content:encoded><![CDATA[<p>Excellent.  Will be using this (or a variation of) in anger I&#8217;m sure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Schenker</title>
		<link>http://lostechies.com/joshuaflanagan/2008/09/18/running-jquery-qunit-tests-under-continuous-integration/#comment-8</link>
		<dc:creator>Gabriel Schenker</dc:creator>
		<pubDate>Fri, 19 Sep 2008 05:37:44 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshuaflanagan/archive/2008/09/18/running-jquery-qunit-tests-under-continuous-integration.aspx#comment-8</guid>
		<description>thanks Joshua. This is exactly what I was looking for :-)</description>
		<content:encoded><![CDATA[<p>thanks Joshua. This is exactly what I was looking for :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
