mirror of
https://github.com/scratchfoundation/scratch-html5.git
synced 2024-12-11 16:21:13 -05:00
10 lines
147 B
JavaScript
10 lines
147 B
JavaScript
'use strict';
|
|
|
|
var targetMock = function() {
|
|
return {
|
|
'showBubble' : function() {},
|
|
'showAsk' : function() {},
|
|
'answer' : 22
|
|
};
|
|
|
|
}
|