UNPKG

imba-shell

Version:

Interactive debugger and REPL for Imba.

14 lines (9 loc) 307 B
const { ImbaRunner } = require('../dist/Runners'); describe('src/Runners/ImbaRunner', () => { it('should return imba version.', () => { expect(ImbaRunner.version).toContain('.'); }); it('should return imba instance path.', () => { expect(ImbaRunner.instance()).toContain('node_modules'); }); })