scratch-audio/test/__mocks__/AudioParam.js

13 lines
278 B
JavaScript

class AudioParamMock {
setTargetAtTime (value /* , start, stop */) {
this.value = value;
}
setValueAtTime (value) {
this.value = value;
}
linearRampToValueAtTime (value) {
this.value = value;
}
}
module.exports = AudioParamMock;