Skip to main content
Module

x/deno_notify/run_tests.sh

Send desktop notifications on all platforms in Deno
Go to Latest
File
#!/bin/bash
# Debug Mode: ./run_test.sh# Release Mode: ./run_test.sh release
set -e
if [[ $1 = "release" ]]; then cargo build -p deno_notify --releaseelse cargo build -p deno_notifyfi
DENO_NOTIFY_PLUGIN_BASE=./target/debug/ DENO_NOTIFY_DEBUG=true \deno test --unstable --allow-all tests/test.ts