setup-php/__tests__/install.test.ts

7 lines
114 B
TypeScript
Raw Normal View History

2019-09-06 06:47:43 +07:00
let a = '2';
describe('Finder tests', () => {
it('checking 2', async () => {
expect(a).toBe('2');
});
});