X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fsample.spec.js;h=cad1b90b5814a25cf9438789a668fcad9bb2104a;hb=594a3bf18969d6cbab5671abf5c5945d6df2aab9;hp=f9c001be1420c7b35101addc5c2b3059143c461e;hpb=a0e050a61a747a903bd12a97ab9c869cbc6c3705;p=mkws-moved-to-github.git diff --git a/test/spec/sample.spec.js b/test/spec/sample.spec.js index f9c001b..cad1b90 100644 --- a/test/spec/sample.spec.js +++ b/test/spec/sample.spec.js @@ -1,3 +1,9 @@ +/* Copyright (c) 2013 IndexData ApS. http://indexdata.com + * + * jQuery sample from system documentation + * + */ + describe('jasmine-node', function(){ it('should pass', function(){ @@ -16,7 +22,7 @@ describe('jasmine-node', function(){ it('shows asynchronous test node-style', function(done){ setTimeout(function(){ expect('second').toEqual('second'); - // If you call done() with an argument, it will fail the spec + // If you call done() with an argument, it will fail the spec // so you can use it as a handler for many async node calls done(); }, 1);