diff options
author | Wilson Page <wilsonpage@me.com> | 2013-10-12 13:41:41 -0700 |
---|---|---|
committer | Wilson Page <wilsonpage@me.com> | 2013-10-12 13:41:41 -0700 |
commit | cf8f3ad94d43a25c57b1c4e5628c86c12e939383 (patch) | |
tree | 255b5b586fa4c7d9da54a043cb216b19d1d58226 /test/test.clear.js | |
parent | 65d2a275a30951910465b37a0ac26790d59d699b (diff) | |
parent | 0343f75622d85330925d35b6193cd728699b7477 (diff) | |
download | fastdom-cf8f3ad94d43a25c57b1c4e5628c86c12e939383.zip fastdom-cf8f3ad94d43a25c57b1c4e5628c86c12e939383.tar.gz fastdom-cf8f3ad94d43a25c57b1c4e5628c86c12e939383.tar.bz2 |
Merge pull request #31 from Krinkle/cleanup
Minor clean up and setting up JSHint
Diffstat (limited to 'test/test.clear.js')
-rw-r--r-- | test/test.clear.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/test.clear.js b/test/test.clear.js index ee60f2e..5194830 100644 --- a/test/test.clear.js +++ b/test/test.clear.js @@ -1,7 +1,7 @@ -suite('Clear', function(){ +suite('clear', function(){ - test("Should not run 'read' job if cleared (sync)", function(done) { + test('Should not run "read" job if cleared (sync)', function(done) { var fastdom = new FastDom(); var read = sinon.spy(); @@ -14,7 +14,7 @@ suite('Clear', function(){ }); }); - test("Should fail silently if job not found in queue", function(done) { + test('Should fail silently if job not found in queue', function(done) { var fastdom = new FastDom(); var read = sinon.spy(); var read2 = sinon.spy(); @@ -28,7 +28,7 @@ suite('Clear', function(){ }); }); - test("Should not run 'write' job if cleared (async)", function(done) { + test('Should not run "write" job if cleared (async)', function(done) { var fastdom = new FastDom(); var read = sinon.spy(); var write = sinon.spy(); @@ -44,7 +44,7 @@ suite('Clear', function(){ }); }); - test("Should not run 'write' job if cleared", function(done) { + test('Should not run "write" job if cleared', function(done) { var fastdom = new FastDom(); var write = sinon.spy(); var id = fastdom.write(write); @@ -57,7 +57,7 @@ suite('Clear', function(){ }); }); - test("Should not run 'defer' job if cleared", function(done) { + test('Should not run "defer" job if cleared', function(done) { var fastdom = new FastDom(); var write = sinon.spy(); var id = fastdom.defer(3, write); @@ -76,7 +76,7 @@ suite('Clear', function(){ }); }); - test("Should remove reference to the job if cleared", function(done) { + test('Should remove reference to the job if cleared', function(done) { var fastdom = new FastDom(); var write = sinon.spy(); var id = fastdom.defer(2, write); @@ -94,4 +94,4 @@ suite('Clear', function(){ }); }); -});
\ No newline at end of file +}); |