# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 4
# self = https://watcher.sour.is/conv/cpijxqa
Are there many JavaScript developers on here? I've built a super basic testing library, because pretty much every library out there does a bunch of magic like auto running the suite, auto loading files, hooks (beforeEach/beforeAll/etc) and all the nesting (describe/it).

I don't think it's needed and have pretty much exclusively been doing "no mocking", "no hooks", and it's worked well for me.

https://github.com/markwylde/just-tap
cc @justamoment
cc @justamoment
@markwylde Seems like a really good lightweight alternative to usual unit test libraries.

I was thinking on having some tests run on a couple of apps I made in JS and it would be a good place to try your tool.

Only two things:

- I haven't noticed the GitHub Pages had a live editor until I saw the code in the repo, you should add a description or an heading to let others know they can play in it.

- I'm confused about the waitFor, what would be a realistic use case for it?