some final touches to the doAsk/answer project

This commit is contained in:
Brian Pilati 2014-03-10 10:16:31 -06:00
parent b6e9ecf0b5
commit 365e93f16a
3 changed files with 2 additions and 10 deletions

View file

@ -41,6 +41,8 @@ Mac Ports:
$ port install npm $ port install npm
``` ```
In your local scratch directory
``` ```
$ npm install $ npm install
``` ```

View file

@ -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() { describe('TargetStage', function() {
it('should return the target.stage object', function() { it('should return the target.stage object', function() {
runtime = new runtimeMock(); runtime = new runtimeMock();

View file

@ -15,8 +15,6 @@ To do:
-Trigger hats (e.g. When Scene Starts?) -Trigger hats (e.g. When Scene Starts?)
-Ask block
-SVGs/Clicks/Correct collisions and bounce -SVGs/Clicks/Correct collisions and bounce
(see Chromium bug https://code.google.com/p/chromium/issues/detail?id=249037). (see Chromium bug https://code.google.com/p/chromium/issues/detail?id=249037).