setup-php/__tests__/install.test.ts
Shivam Mathur 8f9786b73f init
2019-09-06 05:17:43 +05:30

7 lines
114 B
TypeScript

let a = '2';
describe('Finder tests', () => {
it('checking 2', async () => {
expect(a).toBe('2');
});
});