What you test here
A unit test checks one small piece of code by itself. Usually this is a function that takes input and returns output.
For your hackathon repo, this is the easiest proof to add first. Pick business logic, not a button colour or a database call.
One idea
A good unit test proves one expected behaviour with clear inputs and a clear result. If it needs a server, a database, or a logged-in user, it is probably not a unit test.