clippy/__tests__/main.test.ts
2022-11-08 14:01:42 +09:00

6 lines
125 B
TypeScript

import {expect, test} from '@jest/globals'
test('throws invalid number', async () => {
const x = 3
expect(x).toBe(3)
})