scratch-html5/test/artifacts/TargetMock.js

11 lines
147 B
JavaScript
Raw Normal View History

'use strict';
var targetMock = function() {
return {
2014-03-08 02:46:59 -05:00
'showBubble' : function() {},
'showAsk' : function() {},
'answer' : 22
};
}