a cache for slack profile pictures and emojis
1#!/bin/sh
2
3# Start the VHS server
4vhs cassette.tape &
5
6# Wait 2 seconds before running the first curl command
7sleep 4
8
9# Execute the first curl command
10curl localhost:3000/users/U062UG485EE
11
12# Wait 3 seconds before running the second curl command
13sleep 2
14
15curl localhost:3000/emojis/grolf/
16
17sleep 3
18
19curl localhost:3000/emojis/this-does-not-exist/
20
21wait