6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
import {expect, test} from '@jest/globals'
|
|
|
|
test('sanity check', () => {
|
|
expect(true).toBeTruthy()
|
|
})
|