clippy/__tests__/main.test.ts

7 lines
125 B
TypeScript
Raw Normal View History

import {expect, test} from '@jest/globals'
test('throws invalid number', async () => {
2022-11-02 02:12:49 +01:00
const x = 3
expect(x).toBe(3)
})