1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

chore: quick fix

This commit is contained in:
Saad Jutt
2022-06-14 17:05:13 +05:00
parent c830f44e29
commit 8e7c9e671c

View File

@@ -219,7 +219,7 @@ const verifyRUN_TIMES = (): string[] => {
const runTimeTypes = Object.values(RunTimeType) const runTimeTypes = Object.values(RunTimeType)
runTimes.forEach((runTime) => { runTimes.forEach((runTime) => {
if (!runTimeTypes.includes(runTime.toLowerCase() as RunTimeType)) { if (!runTimeTypes.includes(runTime as RunTimeType)) {
errors.push( errors.push(
`- Invalid '${runTime}' runtime\n - valid options ${runTimeTypes}` `- Invalid '${runTime}' runtime\n - valid options ${runTimeTypes}`
) )