From 8d1180f87aeca51a1aa6b1e3f2d486697c273b86 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Sat, 19 Oct 2024 15:15:25 +0200 Subject: [PATCH] fix: test runtime for uniform function --- test/runtime.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runtime.mjs b/test/runtime.mjs index 19b716274..75105fbe1 100644 --- a/test/runtime.mjs +++ b/test/runtime.mjs @@ -77,6 +77,9 @@ const toneHelpersMocked = { strudel.Pattern.prototype.osc = function () { return this; }; +strudel.Pattern.prototype.uniform = function () { + return this; +}; strudel.Pattern.prototype.csound = function () { return this; };