changed-files/src/__tests__/main.test.ts

6 lines
106 B
TypeScript
Raw Normal View History

describe('main test', () => {
it('adds two numbers', async () => {
expect(1 + 1).toEqual(2)
})
})