6 lines
111 B
TypeScript
6 lines
111 B
TypeScript
import {expect, test} from '@jest/globals'
|
|
|
|
test('tests things', async () => {
|
|
expect(true).toEqual(true)
|
|
})
|