Files
setup-ruby/__tests__/main.test.ts

8 lines
220 B
TypeScript
Raw Normal View History

2019-06-27 11:50:36 -04:00
import findRuby, {Platform} from '../src/find-ruby';
2019-06-26 14:22:50 -04:00
describe('TODO - Add a test suite', () => {
2019-06-27 11:50:36 -04:00
it('TODO - Add a test', async () => {
findRuby({addToPath: 'true', version: '>= 2.4'}, Platform.Windows);
});
2019-06-26 14:22:50 -04:00
});