From 1572dcf67a08828f1059777d321612679e3e4aea Mon Sep 17 00:00:00 2001 From: Yotam Mann Date: Mon, 21 Sep 2020 10:10:43 -0400 Subject: [PATCH] adjusting threshold --- Tone/effect/Vibrato.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tone/effect/Vibrato.test.ts b/Tone/effect/Vibrato.test.ts index cc8f2c41..7fb056d2 100644 --- a/Tone/effect/Vibrato.test.ts +++ b/Tone/effect/Vibrato.test.ts @@ -5,7 +5,7 @@ import { expect } from "chai"; import { CompareToFile } from "test/helper/CompareToFile"; import { Oscillator } from "Tone/source/oscillator/Oscillator"; -describe("Effect", () => { +describe("Vibrato", () => { BasicTests(Vibrato); EffectTests(Vibrato); @@ -13,7 +13,7 @@ describe("Effect", () => { return CompareToFile(() => { const vibrato = new Vibrato(4, 1).toDestination(); const osc = new Oscillator().connect(vibrato).start(); - }, "vibrato.wav", 0.01); + }, "vibrato.wav", 0.02); }); context("API", () => {