Commit a3cf3e50 authored by Filipa Lacerda's avatar Filipa Lacerda

Fix broken markdown field test

parent c7dbba8b
...@@ -64,12 +64,11 @@ ...@@ -64,12 +64,11 @@
.then(resp => resp.json()) .then(resp => resp.json())
.then((data) => { .then((data) => {
this.markdownPreviewLoading = false; this.markdownPreviewLoading = false;
this.markdownPreview = data.body; this.markdownPreview = data.body || 'Nothing to preview.';
this.referencedCommands = data.references.commands;
this.referencedUsers = data.references.users;
if (!this.markdownPreview) { if (data.references) {
this.markdownPreview = 'Nothing to preview.'; this.referencedCommands = data.references.commands;
this.referencedUsers = data.references.users;
} }
this.$nextTick(() => { this.$nextTick(() => {
......
...@@ -92,6 +92,7 @@ describe('Markdown field component', () => { ...@@ -92,6 +92,7 @@ describe('Markdown field component', () => {
it('renders GFM with jQuery', (done) => { it('renders GFM with jQuery', (done) => {
spyOn($.fn, 'renderGFM'); spyOn($.fn, 'renderGFM');
previewLink.click(); previewLink.click();
setTimeout(() => { setTimeout(() => {
...@@ -100,7 +101,7 @@ describe('Markdown field component', () => { ...@@ -100,7 +101,7 @@ describe('Markdown field component', () => {
).toHaveBeenCalled(); ).toHaveBeenCalled();
done(); done();
}); }, 0);
}); });
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment