Fixed sample test

This commit is contained in:
Knut Sveidqvist 2022-09-28 17:53:01 +02:00
parent f46f8752ca
commit 766bdde46b
1 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
import { parser } from './parser/info';
import infoDb from './infoDb';
import { parser } from './parser/exampleDiagram';
import db from './exampleDiagramDb';
describe('when parsing an info graph it', function () {
let ex;
beforeEach(function () {
ex = parser;
ex.yy = infoDb;
ex.yy = db;
});
it('should handle an info definition', function () {