#931 Aligning code standard

This commit is contained in:
knsv
2019-09-12 12:55:31 -07:00
parent e14922f15c
commit e67b8c86d6
3 changed files with 49 additions and 50 deletions

View File

@@ -1,15 +1,15 @@
/* eslint-env jasmine */
describe('when parsing an info graph it', function () {
var ex
beforeEach(function () {
ex = require('./parser/info').parser
ex.yy = require('./infoDb')
})
describe('when parsing an info graph it', function() {
var ex;
beforeEach(function() {
ex = require('./parser/info').parser;
ex.yy = require('./infoDb');
});
it('should handle an info definition', function () {
it('should handle an info definition', function() {
var str = `info
showInfo`
showInfo`;
ex.parse(str)
})
})
ex.parse(str);
});
});