mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-07 18:16:12 +00:00
chore(tests): make tests posix compatible (#109)
This commit is contained in:
parent
379ded5a8f
commit
6a2cf96e95
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running error test script..."
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running simple test script..."
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running timeout test script..."
|
||||
|
||||
for i in {1..5}; do
|
||||
for i in `seq 5`; do
|
||||
sleep .5
|
||||
echo "running..."
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue
Block a user