From 48e1b876e00df5880e03d6de0bd0a91eb14e09bb Mon Sep 17 00:00:00 2001 From: Eduard Heimbuch Date: Wed, 26 Aug 2020 10:20:47 +0200 Subject: [PATCH] fix typo --- scm-ui/e2e-tests/src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scm-ui/e2e-tests/src/index.js b/scm-ui/e2e-tests/src/index.js index 8545593228..55c08bb312 100644 --- a/scm-ui/e2e-tests/src/index.js +++ b/scm-ui/e2e-tests/src/index.js @@ -37,14 +37,14 @@ const options = { } }; -const createOuputFile = test => { +const createOutputFile = test => { const title = test.title.join(" -- "); return path.join("cypress", "videos", `${title}.mp4`); }; const cutVideo = (video, test) => { return new Promise((resolve, reject) => { - const title = createOuputFile(test); + const title = createOutputFile(test); ffmpeg(video) .setStartTime(test.videoTimestamp / 1000) .setDuration(test.wallClockDuration / 1000)