The variable asciiConverter seems to be never declared. Assigning variables without defining them first makes them global. If this was intended, consider making it explicit like using window.asciiConverter.
Loading history...
8
9
describe('AsciiConverterTest', function () {
10
11
describe('#test_ascii_converter()', function () {
12
it('should convert geez number to ascii', function () {
The variable $result seems to be never declared. Assigning variables without defining them first makes them global. If this was intended, consider making it explicit like using window.$result.
Loading history...
15
assert.equal($ascii, $result);
16
});
17
});
18
});
19
20
describe('#test_invalid_number_throw_exception()', function () {
21
it('should throws NotGeezArgumentException', function () {