Replacing Q promises with ES6 promises
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import javascript from 'src/js/parser/javascript/parser.js';
|
||||
import util from 'src/js/util.js';
|
||||
import Q from 'q';
|
||||
import _ from 'lodash';
|
||||
|
||||
describe('parser/javascript/charset_range.js', function() {
|
||||
@@ -71,8 +70,8 @@ describe('parser/javascript/charset_range.js', function() {
|
||||
this.node.container = jasmine.createSpyObj('cotnainer', ['addClass', 'text', 'group']);
|
||||
this.node.container.text.and.returnValue('hyphen');
|
||||
|
||||
this.firstDeferred = Q.defer();
|
||||
this.lastDeferred = Q.defer();
|
||||
this.firstDeferred = this.testablePromise();
|
||||
this.lastDeferred = this.testablePromise();
|
||||
|
||||
spyOn(this.node.first, 'render').and.returnValue(this.firstDeferred.promise);
|
||||
spyOn(this.node.last, 'render').and.returnValue(this.lastDeferred.promise);
|
||||
@@ -95,9 +94,8 @@ describe('parser/javascript/charset_range.js', function() {
|
||||
'hyphen',
|
||||
this.node.last
|
||||
], { padding: 5 });
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -3,7 +3,6 @@ import Node from 'src/js/parser/javascript/node.js';
|
||||
import util from 'src/js/util.js';
|
||||
import _ from 'lodash';
|
||||
import Snap from 'snapsvg';
|
||||
import Q from 'q';
|
||||
|
||||
describe('parser/javascript/charset.js', function() {
|
||||
|
||||
@@ -100,9 +99,9 @@ describe('parser/javascript/charset.js', function() {
|
||||
jasmine.createSpyObj('item', ['render'])
|
||||
];
|
||||
this.elementDeferred = [
|
||||
Q.defer(),
|
||||
Q.defer(),
|
||||
Q.defer()
|
||||
this.testablePromise(),
|
||||
this.testablePromise(),
|
||||
this.testablePromise()
|
||||
];
|
||||
this.node.elements[0].render.and.returnValue(this.elementDeferred[0].promise);
|
||||
this.node.elements[1].render.and.returnValue(this.elementDeferred[1].promise);
|
||||
@@ -143,9 +142,8 @@ describe('parser/javascript/charset.js', function() {
|
||||
this.node._render()
|
||||
.then(() => {
|
||||
expect(util.spaceVertically).toHaveBeenCalledWith(this.node.elements, { padding: 5 });
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('renders a labeled box', function(done) {
|
||||
@@ -153,9 +151,8 @@ describe('parser/javascript/charset.js', function() {
|
||||
.then(result => {
|
||||
expect(this.node.renderLabeledBox).toHaveBeenCalledWith('example label', this.partContainer, { padding: 5 });
|
||||
expect(result).toEqual('labeled box promise');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -63,9 +63,8 @@ describe('parser/javascript/escape.js', function() {
|
||||
rx: '3',
|
||||
ry: '3'
|
||||
}));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -43,9 +43,8 @@ describe('parser/javascript/literal.js', function() {
|
||||
.then(label => {
|
||||
expect(label.selectAll('tspan')[0].hasClass('quote')).toBeTruthy();
|
||||
expect(label.selectAll('tspan')[2].hasClass('quote')).toBeTruthy();
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('sets the edge radius of the rect', function(done) {
|
||||
@@ -55,9 +54,8 @@ describe('parser/javascript/literal.js', function() {
|
||||
rx: '3',
|
||||
ry: '3'
|
||||
}));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import javascript from 'src/js/parser/javascript/parser.js';
|
||||
import _ from 'lodash';
|
||||
import Snap from 'snapsvg';
|
||||
import Q from 'q';
|
||||
|
||||
describe('parser/javascript/match_fragment.js', function() {
|
||||
|
||||
@@ -66,7 +65,7 @@ describe('parser/javascript/match_fragment.js', function() {
|
||||
]);
|
||||
this.node.container.group.and.returnValue('example group');
|
||||
|
||||
this.renderDeferred = Q.defer();
|
||||
this.renderDeferred = this.testablePromise();
|
||||
this.node.content = jasmine.createSpyObj('content', [
|
||||
'render',
|
||||
'transform',
|
||||
@@ -99,9 +98,8 @@ describe('parser/javascript/match_fragment.js', function() {
|
||||
this.node._render()
|
||||
.then(() => {
|
||||
expect(this.node.content.transform).toHaveBeenCalledWith('example position');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('renders a skip path and loop path', function(done) {
|
||||
@@ -110,18 +108,16 @@ describe('parser/javascript/match_fragment.js', function() {
|
||||
expect(this.node.skipPath).toHaveBeenCalledWith('content bbox');
|
||||
expect(this.node.loopPath).toHaveBeenCalledWith('content bbox');
|
||||
expect(this.node.container.path).toHaveBeenCalledWith('skip pathloop path');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('renders a loop label', function(done) {
|
||||
this.node._render()
|
||||
.then(() => {
|
||||
expect(this.node.loopLabel).toHaveBeenCalled();
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -2,7 +2,6 @@ import javascript from 'src/js/parser/javascript/parser.js';
|
||||
import util from 'src/js/util.js';
|
||||
import _ from 'lodash';
|
||||
import Snap from 'snapsvg';
|
||||
import Q from 'q';
|
||||
|
||||
describe('parser/javascript/match.js', function() {
|
||||
|
||||
@@ -112,8 +111,8 @@ describe('parser/javascript/match.js', function() {
|
||||
this.node.container.group.and.returnValue('example group');
|
||||
|
||||
this.labelDeferreds = {
|
||||
'Start of line': Q.defer(),
|
||||
'End of line': Q.defer()
|
||||
'Start of line': this.testablePromise(),
|
||||
'End of line': this.testablePromise()
|
||||
};
|
||||
spyOn(this.node, 'renderLabel').and.callFake(label => {
|
||||
return this.labelDeferreds[label].promise;
|
||||
@@ -126,9 +125,9 @@ describe('parser/javascript/match.js', function() {
|
||||
];
|
||||
|
||||
this.partDeferreds = [
|
||||
Q.defer(),
|
||||
Q.defer(),
|
||||
Q.defer()
|
||||
this.testablePromise(),
|
||||
this.testablePromise(),
|
||||
this.testablePromise()
|
||||
];
|
||||
|
||||
this.node.parts[0].render.and.returnValue(this.partDeferreds[0].promise);
|
||||
@@ -217,9 +216,8 @@ describe('parser/javascript/match.js', function() {
|
||||
.then(() => {
|
||||
expect(this.node.start).toEqual('start label');
|
||||
expect(this.node.end).toEqual('end label');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('spaces the items horizontally', function(done) {
|
||||
@@ -232,9 +230,8 @@ describe('parser/javascript/match.js', function() {
|
||||
'part 2',
|
||||
'end label'
|
||||
], { padding: 10 });
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('renders the connector paths', function(done) {
|
||||
@@ -248,9 +245,8 @@ describe('parser/javascript/match.js', function() {
|
||||
'end label'
|
||||
]);
|
||||
expect(this.node.container.path).toHaveBeenCalledWith('connector paths');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import Node from 'src/js/parser/javascript/node.js';
|
||||
import Q from 'q';
|
||||
import Snap from 'snapsvg';
|
||||
|
||||
describe('parser/javascript/node.js', function() {
|
||||
@@ -126,9 +125,8 @@ describe('parser/javascript/node.js', function() {
|
||||
.then(() => {
|
||||
expect(resolve).toHaveBeenCalledWith('result');
|
||||
expect(reject).not.toHaveBeenCalled();
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('rejects the returned promise when the render is canceled', function(done) {
|
||||
@@ -141,9 +139,8 @@ describe('parser/javascript/node.js', function() {
|
||||
.then(() => {
|
||||
expect(resolve).not.toHaveBeenCalled();
|
||||
expect(reject).toHaveBeenCalledWith('Render cancelled');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
@@ -193,9 +190,8 @@ describe('parser/javascript/node.js', function() {
|
||||
.then(() => {
|
||||
expect(this.text.transform).toHaveBeenCalledWith(Snap.matrix()
|
||||
.translate(5, 22));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('sets the dimensions of the rect element', function(done) {
|
||||
@@ -205,18 +201,16 @@ describe('parser/javascript/node.js', function() {
|
||||
width: 52,
|
||||
height: 34
|
||||
});
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('resolves with the group element', function(done) {
|
||||
this.node.renderLabel('example label')
|
||||
.then(group => {
|
||||
expect(group).toEqual(this.group);
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
@@ -271,7 +265,7 @@ describe('parser/javascript/node.js', function() {
|
||||
describe('when a proxy node is not used', function() {
|
||||
|
||||
beforeEach(function() {
|
||||
this.deferred = Q.defer();
|
||||
this.deferred = this.testablePromise();
|
||||
this.node._render = jasmine.createSpy('_render').and.returnValue(this.deferred.promise);
|
||||
spyOn(this.node, 'startRender');
|
||||
spyOn(this.node, 'doneRender');
|
||||
@@ -302,18 +296,16 @@ describe('parser/javascript/node.js', function() {
|
||||
this.node.render(this.container)
|
||||
.then(() => {
|
||||
expect(this.node.doneRender).toHaveBeenCalled();
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('ultimately resolves with the node instance', function(done) {
|
||||
this.node.render(this.container)
|
||||
.then(result => {
|
||||
expect(result).toEqual(this.node);
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
@@ -389,9 +381,8 @@ describe('parser/javascript/node.js', function() {
|
||||
.then(() => {
|
||||
expect(this.text.transform).toHaveBeenCalledWith(Snap.matrix()
|
||||
.translate(0, 20));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('positions the rect element', function(done) {
|
||||
@@ -400,9 +391,8 @@ describe('parser/javascript/node.js', function() {
|
||||
.then(() => {
|
||||
expect(this.rect.transform).toHaveBeenCalledWith(Snap.matrix()
|
||||
.translate(0, 20));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('sets the dimensions of the rect element', function(done) {
|
||||
@@ -412,10 +402,9 @@ describe('parser/javascript/node.js', function() {
|
||||
expect(this.rect.attr).toHaveBeenCalledWith({
|
||||
width: 210,
|
||||
height: 110
|
||||
})
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
});
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('sets the dimensions of the rect element (based on the text element)', function(done) {
|
||||
@@ -430,10 +419,9 @@ describe('parser/javascript/node.js', function() {
|
||||
expect(this.rect.attr).toHaveBeenCalledWith({
|
||||
width: 100,
|
||||
height: 110
|
||||
})
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
});
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('positions the content element', function(done) {
|
||||
@@ -442,9 +430,8 @@ describe('parser/javascript/node.js', function() {
|
||||
.then(() => {
|
||||
expect(this.content.transform).toHaveBeenCalledWith(Snap.matrix()
|
||||
.translate(5, 25));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -2,7 +2,6 @@ import javascript from 'src/js/parser/javascript/parser.js';
|
||||
import util from 'src/js/util.js';
|
||||
import _ from 'lodash';
|
||||
import Snap from 'snapsvg';
|
||||
import Q from 'q';
|
||||
|
||||
describe('parser/javascript/regexp.js', function() {
|
||||
|
||||
@@ -60,9 +59,9 @@ describe('parser/javascript/regexp.js', function() {
|
||||
];
|
||||
|
||||
this.matchDeferred = [
|
||||
Q.defer(),
|
||||
Q.defer(),
|
||||
Q.defer()
|
||||
this.testablePromise(),
|
||||
this.testablePromise(),
|
||||
this.testablePromise()
|
||||
];
|
||||
|
||||
this.node.matches[0].render.and.returnValue(this.matchDeferred[0].promise);
|
||||
@@ -104,9 +103,8 @@ describe('parser/javascript/regexp.js', function() {
|
||||
this.node._render()
|
||||
.then(() => {
|
||||
expect(util.spaceVertically).toHaveBeenCalledWith(this.node.matches, { padding: 5 });
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('renders the sides and curves into the container', function(done) {
|
||||
@@ -118,9 +116,8 @@ describe('parser/javascript/regexp.js', function() {
|
||||
expect(this.node.makeSide).toHaveBeenCalledWith('container bbox', this.node.matches[0]);
|
||||
expect(this.node.makeSide).toHaveBeenCalledWith('container bbox', this.node.matches[2]);
|
||||
expect(this.node.container.path).toHaveBeenCalledWith('curvecurvecurvesideside');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('renders the connectors into the match container', function(done) {
|
||||
@@ -130,9 +127,8 @@ describe('parser/javascript/regexp.js', function() {
|
||||
expect(this.node.makeConnector).toHaveBeenCalledWith('group bbox', this.node.matches[1]);
|
||||
expect(this.node.makeConnector).toHaveBeenCalledWith('group bbox', this.node.matches[2]);
|
||||
expect(this.group.path).toHaveBeenCalledWith('connectorconnectorconnector');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import javascript from 'src/js/parser/javascript/parser.js';
|
||||
import Snap from 'snapsvg';
|
||||
import _ from 'lodash';
|
||||
import Q from 'q';
|
||||
|
||||
describe('parser/javascript/root.js', function() {
|
||||
|
||||
@@ -62,7 +61,7 @@ describe('parser/javascript/root.js', function() {
|
||||
'getBBox'
|
||||
]);
|
||||
|
||||
this.renderDeferred = Q.defer();
|
||||
this.renderDeferred = this.testablePromise();
|
||||
this.node.regexp.render.and.returnValue(this.renderDeferred.promise);
|
||||
});
|
||||
|
||||
@@ -114,9 +113,8 @@ describe('parser/javascript/root.js', function() {
|
||||
this.node._render()
|
||||
.then(() => {
|
||||
expect(this.node.container.path).toHaveBeenCalledWith('M1,2H0M3,2H14');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('renders circle elements before and after the regexp', function(done) {
|
||||
@@ -124,9 +122,8 @@ describe('parser/javascript/root.js', function() {
|
||||
.then(() => {
|
||||
expect(this.node.container.circle).toHaveBeenCalledWith(0, 2, 5);
|
||||
expect(this.node.container.circle).toHaveBeenCalledWith(14, 2, 5);
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
describe('when there are flags', function() {
|
||||
@@ -140,9 +137,8 @@ describe('parser/javascript/root.js', function() {
|
||||
.then(() => {
|
||||
expect(this.node.regexp.transform).toHaveBeenCalledWith(Snap.matrix()
|
||||
.translate(10, 20));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
@@ -158,9 +154,8 @@ describe('parser/javascript/root.js', function() {
|
||||
.then(() => {
|
||||
expect(this.node.regexp.transform).toHaveBeenCalledWith(Snap.matrix()
|
||||
.translate(10, 0));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -2,7 +2,6 @@ import javascript from 'src/js/parser/javascript/parser.js';
|
||||
import Node from 'src/js/parser/javascript/node.js';
|
||||
import _ from 'lodash';
|
||||
import Snap from 'snapsvg';
|
||||
import Q from 'q';
|
||||
|
||||
describe('parser/javascript/subexp.js', function() {
|
||||
|
||||
@@ -60,7 +59,7 @@ describe('parser/javascript/subexp.js', function() {
|
||||
describe('#_render', function() {
|
||||
|
||||
beforeEach(function() {
|
||||
this.renderDeferred = Q.defer();
|
||||
this.renderDeferred = this.testablePromise();
|
||||
|
||||
this.node = new javascript.Parser('(test)').__consume__subexp();
|
||||
this.node.regexp = jasmine.createSpyObj('regexp', ['render']);
|
||||
@@ -81,9 +80,8 @@ describe('parser/javascript/subexp.js', function() {
|
||||
this.node._render()
|
||||
.then(() => {
|
||||
expect(this.node.renderLabeledBox).toHaveBeenCalledWith('example label', this.node.regexp, { padding: 10 });
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import Parser from 'src/js/parser/javascript.js';
|
||||
import regexpParser from 'src/js/parser/javascript/grammar.peg';
|
||||
import Snap from 'snapsvg';
|
||||
import Q from 'q';
|
||||
|
||||
describe('parser/javascript.js', function() {
|
||||
|
||||
@@ -54,36 +53,33 @@ describe('parser/javascript.js', function() {
|
||||
this.parser.parse('example expression')
|
||||
.then(() => {
|
||||
expect(regexpParser.parse).toHaveBeenCalledWith('example expression');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('replaces newlines with "\\n"', function(done) {
|
||||
this.parser.parse('multiline\nexpression')
|
||||
.then(() => {
|
||||
expect(regexpParser.parse).toHaveBeenCalledWith('multiline\\nexpression');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('resolves the returned promise with the parser instance', function(done) {
|
||||
this.parser.parse('example expression')
|
||||
.then(result => {
|
||||
expect(result).toEqual(this.parser);
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('rejects the returned promise with the exception thrown', function(done) {
|
||||
this.parser.parse('/example')
|
||||
regexpParser.parse.and.throwError('fail');
|
||||
this.parser.parse('(example')
|
||||
.then(null, result => {
|
||||
expect(result).toBeDefined();
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
@@ -91,7 +87,7 @@ describe('parser/javascript.js', function() {
|
||||
describe('#render', function() {
|
||||
|
||||
beforeEach(function() {
|
||||
this.renderPromise = Q.defer();
|
||||
this.renderPromise = this.testablePromise();
|
||||
this.parser.parsed = jasmine.createSpyObj('parsed', ['render']);
|
||||
this.parser.parsed.render.and.returnValue(this.renderPromise.promise);
|
||||
});
|
||||
@@ -120,9 +116,8 @@ describe('parser/javascript.js', function() {
|
||||
.then(() => {
|
||||
expect(this.result.transform).toHaveBeenCalledWith(Snap.matrix()
|
||||
.translate(6, 8));
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('sets the dimensions of the image', function(done) {
|
||||
@@ -132,9 +127,8 @@ describe('parser/javascript.js', function() {
|
||||
|
||||
expect(svg.getAttribute('width')).toEqual('62');
|
||||
expect(svg.getAttribute('height')).toEqual('44');
|
||||
}, fail)
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('removes the "loading" class', function(done) {
|
||||
@@ -142,18 +136,16 @@ describe('parser/javascript.js', function() {
|
||||
this.parser.render()
|
||||
.then(() => {
|
||||
expect(this.parser._removeClass).toHaveBeenCalledWith('loading');
|
||||
})
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('removes the progress element', function(done) {
|
||||
this.parser.render()
|
||||
.then(() => {
|
||||
expect(this.container.querySelector('.loading')).toBeNull();
|
||||
})
|
||||
.finally(done)
|
||||
.done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user