🧪 Jest globals

👋 FYI, this note is over 6 months old. Some of the content may be out of date.
import { expect, test } from '@jest/globals'

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

← Back home