From 365e93f16a31d757f10a8c406971703013e8d0ea Mon Sep 17 00:00:00 2001
From: Brian Pilati <brian.pilati@domo.com>
Date: Mon, 10 Mar 2014 10:16:31 -0600
Subject: [PATCH] some final touches to the doAsk/answer project

---
 README.md                    | 2 ++
 test/unit/interpreterSpec.js | 8 --------
 todo.txt                     | 2 --
 3 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md
index 909bf5c..45474e9 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,8 @@ Mac Ports:
 $ port install npm
 ```
 
+In your local scratch directory
+
 ```
 $ npm install
 ```
diff --git a/test/unit/interpreterSpec.js b/test/unit/interpreterSpec.js
index 802db99..7ad7ed4 100644
--- a/test/unit/interpreterSpec.js
+++ b/test/unit/interpreterSpec.js
@@ -77,14 +77,6 @@ describe ('Interpreter', function() {
     });
   });
 
-  describe('PauseActiveThread', function() {
-    it('should call clearTimeout', function() {
-      spyOn(window, "setTimeout");
-      interp.prototype.pauseActiveThread();
-      expect(window.setTimeout).toHaveBeenCalled();
-    });
-  });
-
   describe('TargetStage', function() {
     it('should return the target.stage object', function() {
       runtime = new runtimeMock();
diff --git a/todo.txt b/todo.txt
index 856d91f..c8bf282 100644
--- a/todo.txt
+++ b/todo.txt
@@ -15,8 +15,6 @@ To do:
     
     -Trigger hats (e.g. When Scene Starts?)
 
-    -Ask block
-    
     -SVGs/Clicks/Correct collisions and bounce
      (see Chromium bug https://code.google.com/p/chromium/issues/detail?id=249037).