The code should do something correctly.
Library: jest
Shortcut: test
it('should do something correctly', () => {
// arrange
const expectedValue = "somevalue";
// act
const actualValue = "somefunctionOutput";
// assert
expect(actualValue).toEqual(expectedValue);
});