diff --git a/quixote/quixote-tests.ts b/quixote/quixote-tests.ts index e653df2508..0f2d051f24 100644 --- a/quixote/quixote-tests.ts +++ b/quixote/quixote-tests.ts @@ -2,7 +2,7 @@ /// function test_createFrame() { - var frame; + var frame: QFrame; before((done) => { var options = { src: "" }; frame = quixote.createFrame(options, done()); @@ -10,7 +10,7 @@ function test_createFrame() { } function test_resetFrame() { - var frame; + var frame: QFrame; before((done) => { var options = { src: "" }; frame = quixote.createFrame(options, done()); @@ -22,7 +22,7 @@ function test_resetFrame() { } function test_removeFrame() { - var frame; + var frame: QFrame; before((done) => { var options = { src: "" }; frame = quixote.createFrame(options, done());