test/dummy/test/javascripts/qunit_example.js in test_track-0.0.3 vs test/dummy/test/javascripts/qunit_example.js in test_track-0.0.4

- old
+ new

@@ -1,9 +1,19 @@ +//sinon.config.useFakeTimers = false; + module("TDD JavaScript, Rails 3.1 and the Asset Pipeline"); test("Are you TDD'ing your JS?", function(){ expect( 1 ); var tests = "No tests D:"; equals( tests, "Lots of tests :D", "How many tests?" ); }); +// Use this to test whether or not Sinon is messing with your timers + +//asyncTest("timeout should something something", function(){ + //setTimeout(function(){ + //start(); + //ok(true, "Yay!"); + //}, 1); +//});