Skip to content

Commit

Permalink
Allow high resolution time in Deno
Browse files Browse the repository at this point in the history
  • Loading branch information
alexg-axis committed Dec 13, 2023
1 parent b17de39 commit 9a1e3db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ for file in $main_files; do
go run "$file"
;;
"ts")
NO_COLOR=1 deno run --quiet --allow-read --allow-write "$file"
NO_COLOR=1 deno run --quiet --allow-read --allow-write --allow-hrtime "$file"
;;
"py")
export PYTHONPATH="$PWD/utils/python/:$PYTHONPATH"
Expand Down
2 changes: 1 addition & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ for file in $main_files; do
pushd "$directory"
case "${name##*.}" in
"ts")
NO_COLOR=1 deno test --allow-read --allow-write
NO_COLOR=1 deno test --allow-read --allow-write --allow-hrtime
;;
*)
echo "unsupported $file"
Expand Down

0 comments on commit 9a1e3db

Please sign in to comment.