You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ("r", "script.vsh.R", "//", "input = \"input.txt\""), // TODO add back when `viash config inject` works for inline configs or add separate config/script combo for R
assert(code.length - code_replacements.length <=126+ (name.length+1)*3, "Stripping the paths should not cause very big differences")
77
-
assert(code.length - code_replacements.length >=66+ (name.length+1)*3, "Stripping the paths should not cause very big differences, but at least some")
78
-
assert(code2.length - code2_replacements.length <=126+ (name.length+1)*3, "Stripping the paths should not cause very big differences")
79
-
assert(code2.length - code2_replacements.length >=66+ (name.length+1)*3, "Stripping the paths should not cause very big differences, but at least some")
80
-
81
-
assert(code_replacements.length == code2_replacements.length, "Running config inject multiple times should not result in substantial code differences. Only the placeholder folder is different.")
67
+
// Running config inject multiple times should produce identical results
68
+
assert(code == code2, "Running config inject multiple times should produce identical code.")
0 commit comments