(problem, code, start)
| 10 | let aether = new Aether({language}); |
| 11 | |
| 12 | const checkRange = function(problem, code, start) { |
| 13 | if (start) { |
| 14 | expect(problem.range[0].row).toEqual(start.row); |
| 15 | return expect(problem.range[0].col).toEqual(start.col); |
| 16 | } |
| 17 | }; |
| 18 | |
| 19 | xdescribe(`${language} Errors Test suite`, () => describe("Syntax Errors", function() { |
| 20 | it("no class", function() { |