Introduce display of relational structures (experimental)
Change-Id: I3f8f16ff477e0ff21d846a4a0799a8e48f3f43e4
diff --git a/dev/js/spec/matchSpec.js b/dev/js/spec/matchSpec.js
index 68bd981..806aee8 100644
--- a/dev/js/spec/matchSpec.js
+++ b/dev/js/spec/matchSpec.js
@@ -430,7 +430,7 @@
it('should parse into a tree (async) 1', function (done) {
var info = matchClass.create(match).info();
expect(info).toBeTruthy();
- info.getTree(undefined, undefined, function (treem) {
+ info.getTree(undefined, undefined, "spans", function (treem) {
tree = treem;
done();
});
@@ -475,7 +475,7 @@
it('should add a tree view async 1', function (done) {
expect(info).toBeTruthy();
- info.addTree('mate', 'beebop', function () {
+ info.addTree('mate', 'beebop', "spans", function () {
done();
});
});
@@ -565,7 +565,7 @@
it('should be rendered async 1', function (done) {
var info = matchClass.create(match).info();
expect(info).toBeTruthy();
- info.getTree(undefined, undefined, function (y) {
+ info.getTree(undefined, undefined, "spans", function (y) {
tree = y;
done();
});