🧪Jest globals

import { expect, test } from '@jest/globals'

test('two plus two is four', () => {
  expect(2 + 2).toBe(4)
})