mirror of
				https://github.com/janet-lang/janet
				synced 2025-10-31 15:43:01 +00:00 
			
		
		
		
	Don't truncate test output on failures.
This commit is contained in:
		| @@ -14,11 +14,9 @@ | ||||
|   (++ num-tests-run) | ||||
|   (when x (++ num-tests-passed)) | ||||
|   (def str (string e)) | ||||
|   (def truncated | ||||
|     (if (> (length e) 40) (string (string/slice e 0 35) "...") (describe e))) | ||||
|   (if x | ||||
|     (when is-verbose (eprintf "\e[32m✔\e[0m %s: %v" truncated x)) | ||||
|     (eprintf "\n\e[31m✘\e[0m %s: %v" truncated x)) | ||||
|     (when is-verbose (eprintf "\e[32m✔\e[0m %s: %v" (describe e) x)) | ||||
|     (eprintf "\n\e[31m✘\e[0m %s: %v" (describe e) x)) | ||||
|   x) | ||||
|  | ||||
| (defmacro assert-error | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Calvin Rose
					Calvin Rose